attempting proxying

This commit is contained in:
2025-12-09 15:58:03 -05:00
parent 3467651c27
commit 44e35771fa

View File

@@ -24,12 +24,15 @@ http {
} }
location /events { location /events {
proxy_pass http://chore-app-backend:5000/events; proxy_pass http://chore-app-backend:5000/events;
proxy_set_header Connection ''; proxy_set_header Host $host;
proxy_http_version 1.1; proxy_set_header Connection '';
chunked_transfer_encoding off; proxy_http_version 1.1;
proxy_buffering off; chunked_transfer_encoding off;
proxy_cache off; proxy_buffering off;
proxy_cache off;
proxy_read_timeout 36000s;
proxy_send_timeout 36000s;
} }
location / { location / {