-
Notifications
You must be signed in to change notification settings - Fork 49
/
nginx.conf
45 lines (37 loc) · 995 Bytes
/
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
events {
worker_connections 4096;
}
http {
include /etc/nginx/mime.types;
server {
listen 80;
server_name pizza-sync.com;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri /index.html;
}
location ~ \.css {
add_header Content-Type text/css;
}
location /initial-state {
proxy_pass http://pizza-sync-api:3000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
location /socket.io/ {
proxy_pass http://pizza-sync-api:3000;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
}
location ~* .(jpg|jpeg|png|gif|ico|css|js)$ {
expires 1d;
}
}
}