The last few days have focused on the NGINX installation started over the weekend. The MediaWiki section of the site was down until last night and appears to now be working. The server block was written incorrectly and causing the wiki not to load. This is a working location block.
[code lang=”js”]location /alv/ {index index.php index.html;
try_files $uri $uri /alv/index.php?query_string;
}[/code]
I’ll stick with this code and see how it is working.
On a different note, optimization for site loading still continues. JavaScript and CSS are not combined, yet. Pingdom tools shows a score of 79/100. This is better than under Apache but still not good.
At one point the site had a score of 90/100 but the minify was causing issues.
Source: http://stackoverflow.com/questions/20648979/nginx-server-block-when-mediawiki-in-subdirectory/20649009