Created
May 3, 2011 13:12
-
-
Save caironoleto/953305 to your computer and use it in GitHub Desktop.
balancer.load.com
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 my.balancer.load.com { | |
server 80.80.80.80:8080; | |
server 80.80.80.80:8181; | |
server 81.81.81.81:8080; | |
server unix:/path/to/your/socket; | |
} | |
server { | |
listen 80; | |
server_name balancer.load.com | |
location / { | |
proxy_pass http://my.balancer.load.com; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment