Skip to content

Instantly share code, notes, and snippets.

@bartdorsey
Last active January 21, 2022 15:22
Show Gist options
  • Save bartdorsey/a8c90eda1a791d2f1c72b14b0d0f407d to your computer and use it in GitHub Desktop.
Save bartdorsey/a8c90eda1a791d2f1c72b14b0d0f407d to your computer and use it in GitHub Desktop.
nginx port 80 application server
upstream app_servers {
server app:4000;
}
server {
listen 80;
location / {
proxy_pass http://app:4000/;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment