summaryrefslogtreecommitdiff
path: root/nginx/sites/notif.vainsocial.dev.conf
blob: 2ba3b01746d6317ef3299ae241e85cc05796de5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
server {

    listen 80;
    listen [::]:80;

    server_name notif.vainsocial.dev;

    location / {
		proxy_pass http://websocket;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection $connection_upgrade;    
	}
}