Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save soloradish/fd5a39b9e7126588e2bb55be682a208b to your computer and use it in GitHub Desktop.
Save soloradish/fd5a39b9e7126588e2bb55be682a208b to your computer and use it in GitHub Desktop.
nginx upstream example
upstream backend {
server 127.0.0.1:8080;
server 127.0.0.1:8081;
server 127.0.0.1:8082;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment