Files
algorithm/frontend/nginx.conf
2026-02-08 14:42:58 +08:00

28 lines
633 B
Nginx Configuration File

events {
worker_connections 1024;
}
http {
upstream backend {
server backend:8000;
}
server {
listen 80;
# 前端静态文件
location / {
root /usr/share/nginx/html;
try_files $uri $uri/ /index.html;
}
# API请求代理到后端
location /api {
proxy_pass http://backend;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
}