Member page inaccessible NGINX - Frineldy URLs

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:

Код:
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

Читать далее...
 
Активность
Пока что здесь никого нет
Назад
Верх Низ