-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathroundtable.conf
44 lines (34 loc) · 903 Bytes
/
roundtable.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
server {
listen 80;
listen [::]:80;
server_name _;
root /usr/share/nginx/html;
include /etc/nginx/default.d/*.conf;
gzip on;
gzip_vary on;
gzip_min_length 10240;
gzip_types text/css text/javascript application/x-javascript;
location / {
index index.html;
gzip on;
gzip_types application/json;
gzip_static on;
}
location /socket.io {
proxy_http_version 1.1;
proxy_buffering off;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_pass http://127.0.0.1:8000/socket.io;
}
location /api {
gzip on;
gzip_types application/json;
gzip_static on;
proxy_http_version 1.1;
proxy_buffering off;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_pass http://127.0.0.1:8000;
}
}