Member page inaccessible NGINX - Frineldy URLs

Status
This content is read-only, or is not open for further replies.

rkxh

Guest
offline
Hello everyone, I oddly run into the issue that friendly URLs are only partially working with NGINX and friendly URLs enabled.
Here is the config, which matches the docs:
NGINX:

Code:
server {
    listen 80;
    server_name www.forum.tld forum.tld;
    
    if ($host = www.forum.tld) {
        return 301 https://forum.tld$request_uri;
    } # managed by Certbot

    if ($host = forum.tld) {
        return 301 https://forum.tld$request_uri;
    } # managed by Certbot
}


server {
        listen 443...

Read more

Continue reading...
 
Liked by:
Status
This content is read-only, or is not open for further replies.
Top Bottom