• Welcome to Tux Reports: Where Penguins Fly. We hope you find the topics varied, interesting, and worthy of your time. Please become a member and join in the discussions.

NGINX Backend Project; MediaWiki Working in Subdirectory

LPH

Flight Director
Flight Instructor
LPH submitted a new blog post:

NGINX Backend Project; MediaWiki Working in Subdirectory

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...
Continue reading the Original Blog Post
 
Last edited:
Top