I installed Ubuntu on a droplet as well as NGINX. WordPress and XenForo are working fine but I need the MediaWiki subdirectory to work. Is there a source for a working server block somewhere?
location {}
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Try replacing <pre>location /alv</pre> with <pre>location /alv/index.php</pre>.
Thank you. I’ve been all over the site and should have stated this in my post (but I was on an iPad last night). <br> <br>Anyway, let me add more information. <br> <br>directory: domain.com/alv <br>LocalSettings: $wfArticlePath = “/alv/$1” <br>location /alv { <br> try_files $uri $usr/ /w/index.php?$query_string <br>} <br> <br>This gives domain.com/alv/Main_Page and I want domain.com/alv/index.php/Main_Page <br> <br>Thank you.
See if this helps: <a href=“http://www.dereckson.be/blog/2013/10/24/mediawiki-nginx-configuration-file/”>http://www.dereckson.be/blog/2013/10/24/mediawiki-nginx-configuration-file/</a>