TangSengDaoDaoManager/default.conf
2023-07-08 15:29:32 +08:00

15 lines
252 B
Plaintext

server {
listen 8084;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html =404;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}