This commit is contained in:
2026-08-10 22:05:18 +08:00
commit 1e294cb4ae
18 changed files with 3922 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
server {
listen 80;
server_name localhost;
# 前端静态文件
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
}