Skip to content

Instantly share code, notes, and snippets.

@avinashseth
Created January 3, 2020 02:29
Show Gist options
  • Save avinashseth/98bc65f1de1b18ec9bbc25f2c80e2241 to your computer and use it in GitHub Desktop.
Save avinashseth/98bc65f1de1b18ec9bbc25f2c80e2241 to your computer and use it in GitHub Desktop.
server {
listen 80
sever_name localhost;
location /production {
proxy_pass https://your_url.com
}
}
server {
listen 80
sever_name localhost;
location /development {
proxy_pass https://your_url.com
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment