add nginx

This commit is contained in:
2025-11-03 09:30:59 +08:00
parent c63f36fb59
commit f16f0fdb32
2 changed files with 20 additions and 0 deletions

11
nginx copy.conf Normal file
View File

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