Subham9126 commited on
Commit
2692bbd
·
verified ·
1 Parent(s): 885a2c2

Update nginx.conf

Browse files
Files changed (1) hide show
  1. nginx.conf +8 -13
nginx.conf CHANGED
@@ -1,19 +1,14 @@
1
  server {
2
  listen 7860;
3
 
4
- # Route to LocalStack (S3, DynamoDB, etc.)
5
- location /aws/ {
6
- proxy_pass http://localhost:4566/;
 
7
  proxy_set_header Host $host;
8
- }
9
-
10
- # Route to your n8n
11
- location /automation/ {
12
- proxy_pass http://localhost:5678/;
13
- }
14
-
15
- # Route to your Vault
16
- location /vault/ {
17
- proxy_pass http://localhost:8200/;
18
  }
19
  }
 
1
  server {
2
  listen 7860;
3
 
4
+ location /sse {
5
+ proxy_pass http://localhost:3000/sse;
6
+ proxy_http_version 1.1;
7
+ proxy_set_header Connection "";
8
  proxy_set_header Host $host;
9
+ proxy_cache off;
10
+ proxy_buffering off;
11
+ chunked_transfer_encoding on;
12
+ proxy_read_timeout 86400s; # Prevents timeout during long browsing sessions
 
 
 
 
 
 
13
  }
14
  }