Skip to content

Instantly share code, notes, and snippets.

@remiq
Created October 22, 2015 16:57
Show Gist options
  • Save remiq/b0948308d5f028821085 to your computer and use it in GitHub Desktop.
Save remiq/b0948308d5f028821085 to your computer and use it in GitHub Desktop.
Nginx config for Phoenix Channels
upstream phoenix {
server phoenix:8003;
}
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
server {
listen 80;
server_name _;
location / {
proxy_pass http://phoenix;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment