Skip to content

Instantly share code, notes, and snippets.

@angrycub
Created April 14, 2021 17:32
Show Gist options
  • Save angrycub/74bf941c238fcc19a8b252d26bb40f77 to your computer and use it in GitHub Desktop.
Save angrycub/74bf941c238fcc19a8b252d26bb40f77 to your computer and use it in GitHub Desktop.
Basic NGINX template for an example
server {
listen {{ env "PORT" }};
server_name {{ env "DOMAIN" }};
location / {
proxy_pass http://{{ env "UPSTREAM" }};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment