Merge pull request #64 from asm89/patch-2

Escape variable in nginx post-deploy script
This commit is contained in:
Jeff Lindsay
2013-07-01 12:12:47 -07:00

View File

@@ -12,11 +12,11 @@ server {
location / {
proxy_pass http://$APP;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Upgrade \$http_upgrade;
proxy_set_header Connection "upgrade";
}
}
EOF
nc -U $HOME/reload-nginx
echo "$hostname" > "$HOME/$APP/VHOST"
fi
fi