添加 nginx.conf

This commit is contained in:
ywp
2025-06-14 16:17:43 +08:00
parent 5f48995626
commit 76d1c7d2ce

11
nginx.conf Normal file
View File

@ -0,0 +1,11 @@
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}