nginx: Fix index errors
All checks were successful
Build Docker / Build Docker (push) Successful in 21s

This commit is contained in:
Nathan Woodburn 2023-07-31 17:35:30 +10:00
parent a2f34bd784
commit edf5da485d
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -5,7 +5,7 @@ server {
location / { location / {
root /usr/share/nginx/html; root /usr/share/nginx/html;
index index.html index.htm; index index.html index.htm;
try_files $uri $uri.html; try_files $uri $uri.html /index.html;
} }
error_page 500 502 503 504 /50x.html; error_page 500 502 503 504 /50x.html;
location = /50x.html { location = /50x.html {