Created
May 31, 2017 08:03
-
-
Save soloradish/fd5a39b9e7126588e2bb55be682a208b to your computer and use it in GitHub Desktop.
nginx upstream example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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