We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d61a3a8 commit 5f7c0acCopy full SHA for 5f7c0ac
config/nginx-vanilla.conf
@@ -176,16 +176,17 @@ server {
176
server {
177
listen 80;
178
server_name indexer.TLD_NAME;
179
-
180
- # Ensure Nginx doesn't buffer the SSE stream
181
- proxy_buffering off;
182
183
- # Keep the connection alive for SSE
184
- proxy_read_timeout 300;
185
- proxy_send_timeout 300;
186
187
location / {
188
proxy_pass http://localhost:6000;
+
+ # Ensure Nginx doesn't buffer the SSE stream
+ proxy_buffering off;
+ # Keep the connection alive for SSE
+ proxy_read_timeout 300;
+ proxy_send_timeout 300;
189
190
#add_header Access-Control-Allow-Origin *;
191
add_header Access-Control-Max-Age 3600;
192
add_header Access-Control-Expose-Headers Content-Length;
0 commit comments