Headers from backend app:
Content-Type: text/event-stream;
Connection: keep-alive;
Cache-Control: no-cache;
X-Accel-Buffering: no;| location / { | |
| proxy_pass http://some-backend; | |
| chunked_transfer_encoding off; | |
| proxy_http_version 1.1; | |
| proxy_set_header Connection ''; | |
| proxy_buffering off; | |
| proxy_cache off; | |
| } |