firewallet-site/default.conf

14 lines
340 B
Plaintext
Raw Normal View History

2023-07-31 17:32:25 +10:00
server {
listen 80;
listen [::]:80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
2023-07-31 17:35:30 +10:00
try_files $uri $uri.html /index.html;
2023-07-31 17:32:25 +10:00
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}