vscode / nginx.conf
Subham9126's picture
Update nginx.conf
2692bbd verified
Raw
History Blame Contribute Delete
385 Bytes
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
}
}