Fix arguments in nginx.conf

This commit is contained in:
celestora 2021-09-16 19:20:50 +03:00 committed by GitHub
parent 5855601d59
commit 8f61111b41
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,7 +21,7 @@ server {
location / { location / {
index index.php; index index.php;
try_files $uri $uri/ /index.php; try_files $uri $uri/ /index.php$is_args$args;
} }
# DO NOT DELETE "(?!well-known).*" if you want to use let's encrypt. # DO NOT DELETE "(?!well-known).*" if you want to use let's encrypt.
@ -47,4 +47,4 @@ server {
listen [::]:80; listen [::]:80;
server_name domain.tld; server_name domain.tld;
return 301 https://$server_name$request_uri; return 301 https://$server_name$request_uri;
} }