Created
September 27, 2016 00:19
-
-
Save brucepom/d9641819e6ce2a5a0bc39f862b5a9802 to your computer and use it in GitHub Desktop.
Nginx config for Phoenix. Use staticcally gzipped assets, no ssh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
upstream chat_web { | |
server 127.0.0.1:8080; | |
} | |
map $http_upgrade $connection_upgrade { | |
default upgrade; | |
'' close; | |
} | |
server{ | |
listen 80; | |
server_name chat-prod.test; | |
location ~ ^/(js|css)/ { | |
gzip_static on; | |
gzip_types application/javascript text/css; | |
proxy_pass http://chat_web; | |
} | |
location / { | |
try_files $uri @proxy; | |
} | |
location @proxy { | |
include proxy_params; | |
proxy_redirect off; | |
proxy_pass http://chat_web; | |
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