python migration

This commit is contained in:
2026-05-26 14:36:34 -04:00
parent a67815c61a
commit 1ba2aa39d8
694 changed files with 1396 additions and 86487 deletions
+20
View File
@@ -0,0 +1,20 @@
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri /index.html;
}
location /api/ {
# Keep the /api prefix when forwarding (Flask routes are /api/*).
proxy_pass http://backend:3001;
proxy_http_version 1.1;
# SSE support (important for your EventSource)
proxy_set_header Connection '';
proxy_buffering off;
chunked_transfer_encoding off;
}
}