Files
house-elo-ranking/frontend/nginx.conf
2026-03-06 12:25:07 +00:00

17 lines
358 B
Nginx Configuration File

server {
listen 80;
root /usr/share/nginx/html;
index index.html;
# API requests → backend
location /api/ {
proxy_pass http://elo-backend:8000/api/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
# SPA fallback
location / {
try_files $uri $uri/ /index.html;
}
}