Fix deployment: SSL, Missions, Docs Route, Chat Timeout

This commit is contained in:
2025-12-25 16:05:05 +01:00
parent 043cc2c83b
commit c0fde0a2d0
10 changed files with 1368 additions and 2 deletions

View File

@@ -58,6 +58,16 @@ location /api/docs {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
# Terminal (TTYD)
location /terminal/ {
proxy_pass http://127.0.0.1:7681;
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;
}
# Health check (internal monitoring)
location /health {
proxy_pass http://crumbforest_backend;