1
0
Fork 0
forked from exozyme/nginx

Don't require .html in URLs for exopages sites

This commit is contained in:
Anthony Wang 2022-01-26 12:13:48 -06:00
parent bdceefb0d0
commit eeec872eda
Signed by untrusted user: a
GPG key ID: BC96B00AEC5F2D76

View file

@ -14,6 +14,6 @@ server {
}
location / {
try_files $uri $uri/ =404;
try_files $uri $uri.html $uri/ =404;
}
}