1
0
This commit is contained in:
2026-04-20 15:07:14 +08:00
parent e6b59ef113
commit c16498c04d
17 changed files with 182 additions and 66 deletions

18
nginx/conf.d/default.conf Normal file
View File

@@ -0,0 +1,18 @@
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;
}