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,761
- Points
- 823
Reputation:
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:
Read more
Continue reading...
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...