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 {
proxy_pass http://chore-app-backend:5000/events;
proxy_set_header Connection '';
proxy_http_version 1.1;
chunked_transfer_encoding off;
proxy_buffering off;
proxy_cache off;
proxy_pass http://chore-app-backend:5000/events;
proxy_set_header Host $host;
proxy_set_header Connection '';
proxy_http_version 1.1;
chunked_transfer_encoding off;
proxy_buffering off;
proxy_cache off;
proxy_read_timeout 36000s;
proxy_send_timeout 36000s;
}
location / {