Skip to content

Instantly share code, notes, and snippets.

@m-richo
Created August 20, 2015 04:58
Show Gist options
  • Save m-richo/d2d74563de82f808c62c to your computer and use it in GitHub Desktop.
Save m-richo/d2d74563de82f808c62c to your computer and use it in GitHub Desktop.
simple confd template for nginx
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