RSS Feed/News Nginx Friendly URL Config For Multiple Directories/Installs

Status
Not open for further replies.

ENXF NET

Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
Joined
Nov 13, 2018
Messages
24,699
Points
823

Reputation:

So I've noticed there's a lot on configuring NGINX for single installs (single /forums/) directory, but I've been trying to get it work with multiple installs (/forum1/ /forum2/).

I think this is helpful for test servers and almost got it working with:

Code:

Code:
    location ~ /$ {
        try_files $uri $uri/ /index.php?$uri&$args;
        index index.php index.html index.htm;
    }

location /install/data/ {
        internal;
    }
    location /install/templates/ {
        internal;
    }...

Read more

Continue reading...
 
Status
Not open for further replies.
Top