Skip to content

Instantly share code, notes, and snippets.

@konstantinzolotarev
Created November 17, 2016 13:39
Show Gist options
  • Save konstantinzolotarev/27928622972b739fcf31633fc7ff4090 to your computer and use it in GitHub Desktop.
Save konstantinzolotarev/27928622972b739fcf31633fc7ff4090 to your computer and use it in GitHub Desktop.
Websocket server should listen port 8080. And ELB type should be `application ELB` NOT CLASSIC ONE !
files:
"/etc/nginx/conf.d/01_websockets.conf":
mode: "000644"
owner: root
group: root
content: |
upstream nodejs {
server 127.0.0.1:8081;
keepalive 256;
}
server {
listen 8080;
location / {
proxy_pass http://nodejs;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
"/opt/elasticbeanstalk/hooks/appdeploy/enact/41_remove_eb_nginx_confg.sh":
mode: "000755"
owner: root
group: root
content : |
mv /etc/nginx/conf.d/00_elastic_beanstalk_proxy.conf /etc/nginx/conf.d/00_elastic_beanstalk_proxy.conf.old
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment