mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
websocket support in NGINX , see: #45
This commit is contained in:
@@ -1,4 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
# latest stable NGINX 1.4.x with websocket support
|
||||
add-apt-repository -y ppa:nginx/stable
|
||||
apt-get install -y nginx dnsutils
|
||||
|
||||
cat<<EOF > /etc/init/nginx-reloader.conf
|
||||
|
||||
@@ -9,7 +9,12 @@ upstream $APP { server 127.0.0.1:$PORT; }
|
||||
server {
|
||||
listen 80;
|
||||
server_name $hostname;
|
||||
location / { proxy_pass http://$APP; }
|
||||
location / {
|
||||
proxy_pass http://$APP;
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "upgrade";
|
||||
}
|
||||
}
|
||||
EOF
|
||||
nc -U $HOME/reload-nginx
|
||||
|
||||
Reference in New Issue
Block a user