Files
ai-rpg/deploy/nginx.conf
2026-06-20 19:13:05 +03:00

33 lines
737 B
Nginx Configuration File

server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
# SPA fallback
location / {
try_files $uri $uri/ /index.html;
}
# API + SSE
location /api/ {
proxy_pass http://backend:8000;
proxy_http_version 1.1;
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;
# SSE: disable buffering
proxy_buffering off;
proxy_cache off;
proxy_read_timeout 300s;
}
# Static assets (icons, uploads)
location /static/ {
proxy_pass http://backend:8000;
}
}