Files
healthy_oil/nginx copy.conf
2025-11-03 09:30:59 +08:00

12 lines
188 B
Plaintext

server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri /index.html =404;
}
include /etc/nginx/extra-conf.d/*.conf;
}