-
Notifications
You must be signed in to change notification settings - Fork 224
/
Copy pathnginx.conf
93 lines (75 loc) · 2.71 KB
/
nginx.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
proxy_request_buffering off;
client_max_body_size 0;
upstream web {
server web:4000;
}
upstream api {
server api:8080;
}
server {
listen 3000;
# Handle WebSocket and long-polling for /api/socket.io
location /api/socket.io/ {
proxy_pass http://api/socket.io/;
proxy_http_version 1.1;
# WebSocket settings
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
# Standard proxy headers
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
# Disable buffering for WebSocket
proxy_buffering off;
proxy_cache_bypass $http_upgrade;
# Timeouts for long-polling
proxy_read_timeout 60s;
proxy_send_timeout 60s;
}
# Handle Yjs WebSocket and long-polling for /api/v2/yjs/
location /api/v2/yjs/ {
proxy_pass http://api/v2/yjs/;
proxy_http_version 1.1;
# WebSocket settings
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
# Standard proxy headers
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
# Disable buffering for WebSocket
proxy_buffering off;
proxy_cache_bypass $http_upgrade;
# Timeouts for long-polling
proxy_read_timeout 60s;
proxy_send_timeout 60s;
}
# Proxy regular HTTP requests to /api (non-WebSocket) to the API service
location /api/ {
proxy_pass http://api/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
# Proxy everything else to the frontend service
location / {
proxy_pass http://web/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
}