第一次提交
This commit is contained in:
19
app-instance/frontend/nginx.conf
Normal file
19
app-instance/frontend/nginx.conf
Normal 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;
|
||||
# }
|
||||
}
|
||||
Reference in New Issue
Block a user