19 lines
480 B
Plaintext
19 lines
480 B
Plaintext
|
http {
|
||
|
upstream philip-cat {
|
||
|
server 134.209.158.35:3000;
|
||
|
}
|
||
|
server {
|
||
|
listen 80;
|
||
|
server_name philip-cat.com www.philip-cat.com;
|
||
|
|
||
|
location / {
|
||
|
proxy_pass http://134.209.158.35: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;
|
||
|
}
|
||
|
}
|
||
|
}
|