File size: 385 Bytes
a2a9e57 2692bbd a2a9e57 2692bbd a2a9e57 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | server {
listen 7860;
location /sse {
proxy_pass http://localhost:3000/sse;
proxy_http_version 1.1;
proxy_set_header Connection "";
proxy_set_header Host $host;
proxy_cache off;
proxy_buffering off;
chunked_transfer_encoding on;
proxy_read_timeout 86400s; # Prevents timeout during long browsing sessions
}
} |