Created
August 20, 2015 04:58
-
-
Save m-richo/d2d74563de82f808c62c to your computer and use it in GitHub Desktop.
simple confd template for nginx
This file contains hidden or 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
server { | |
server_name {{ getenv "proxy_domain" }}; | |
location / { | |
proxy_pass http://{{ getenv "backend_host" }}; | |
proxy_redirect off; | |
proxy_set_header Host $host; | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment