Last active
July 20, 2021 20:23
-
-
Save upbeta01/65e09c1ed5f63bcc44369797f84f1bc4 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 containers { | |
server 0.0.0.0:9000; | |
server 0.0.0.0:9001; | |
server 0.0.0.0:9002; | |
server 0.0.0.0:9003; | |
} | |
server { | |
listen 80; | |
server_name hostname; | |
location / { | |
proxy_pass http://containers; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment