Created
November 19, 2022 14:43
-
-
Save thomas-alrek/74a687ff838bfa0440eafa5bb86db596 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
| http { | |
| upstream backend { | |
| server node1.example.com; | |
| server node2.example.com; | |
| } | |
| } | |
| server { | |
| location / { | |
| proxy_pass http://backend; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment