add /api proxy

This commit is contained in:
Egor Pozharov
2026-04-14 17:30:43 +06:00
parent 9c9f01b2f2
commit 9abc1e3888
4 changed files with 23 additions and 2 deletions

View File

@@ -16,6 +16,19 @@ server {
add_header Cache-Control "public, immutable";
}
# Proxy API requests to backend
location /api/ {
proxy_pass http://backend:8080;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
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;
proxy_cache_bypass $http_upgrade;
}
# Handle client-side routing
location / {
try_files $uri $uri/ /index.html;