Remove chunked transfer encoding from nginx conf

This configuration was leading to long delays when receiving SSE
notifications with the demo-rx app.
This commit is contained in:
Blockstream Satellite 2021-12-21 16:33:15 -03:00
parent f8dfa44c73
commit 8c91e11cca
2 changed files with 0 additions and 2 deletions

View file

@ -10,7 +10,6 @@ server {
proxy_pass http://api-server:9292/;
}
location /subscribe/ {
chunked_transfer_encoding off;
proxy_buffering off;
proxy_request_buffering off;
proxy_cache off;

View file

@ -126,7 +126,6 @@ write_files:
# Proxy to mainnet SSE container
location /subscribe/ {
chunked_transfer_encoding off;
proxy_buffering off;
proxy_request_buffering off;
proxy_cache off;