Skip to content

Instantly share code, notes, and snippets.

@ziazek
Created June 1, 2017 09:36
Show Gist options
  • Save ziazek/e75fbe5ffa98febca3e78e087087f81b to your computer and use it in GitHub Desktop.
Save ziazek/e75fbe5ffa98febca3e78e087087f81b to your computer and use it in GitHub Desktop.
Nginx site config
upstream deploy_phoenix {
server 127.0.0.1:8888;
}
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
server {
listen 80;
server_name deployphoenix.yoursite.com;
location / {
try_files $uri @proxy;
}
location @proxy {
include proxy_params;
proxy_redirect off;
proxy_pass http://deploy_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