[30388f42] feat: Full stack integration and documentation overhaul

This commit is contained in:
2026-03-08 12:24:35 +00:00
parent 5b48573df0
commit ee238fdd9a
15 changed files with 843 additions and 996 deletions

View File

@@ -8,6 +8,14 @@ server {
try_files $uri $uri/ /index.html;
}
location /api/ {
proxy_pass http://heatmap-backend:8000;
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;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;