Files
beaver_project/app-instance/frontend/nginx.conf
2026-03-13 16:40:08 +08:00

20 lines
492 B
Nginx Configuration File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;
# }
}