1
0
Files
ag-index/nginx/conf.d/default.conf

19 lines
300 B
Plaintext
Raw Normal View History

2026-04-20 15:07:14 +08:00
server {
listen 80;
listen [::]:80;
server_name example.com www.example.com;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ =404;
}
location = /50x.html {
internal;
}
error_page 500 502 503 504 /50x.html;
}