第一次提交

This commit is contained in:
2026-03-13 16:40:08 +08:00
commit 0a49bcfb2d
277 changed files with 61890 additions and 0 deletions

View File

@ -0,0 +1,19 @@
server {
listen 80;
root /usr/share/nginx/html;
index index.html;
location / {
# 对于单页应用 (SPA),所有路由都应指向 index.html
try_files $uri /index.html;
}
# 可以添加一个代理将 API 请求转发到后端以解决CORS问题
# location /api/ {
# proxy_pass http://backend:8000/;
# proxy_set_header Host $host;
# proxy_set_header X-Real-IP $remote_addr;
# proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
# }
}