Created
April 24, 2014 07:20
-
-
Save viglesiasce/11244733 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
| Listen 0.0.0.0:8888 | |
| <VirtualHost *:8888> | |
| ProxyRequests off | |
| ServerName d-12.qa1.eucalyptus-systems.com | |
| <Proxy balancer://mycluster> | |
| BalancerMember http://10.111.5.137:8888 | |
| BalancerMember http://10.111.5.138:8888 | |
| Order Deny,Allow | |
| Deny from none | |
| Allow from all | |
| ProxySet lbmethod=byrequests | |
| ProxySet stickysession=ROUTEID | |
| </Proxy> | |
| ProxyPass / balancer://mycluster/ | |
| </VirtualHost> | |
| Listen 0.0.0.0:80 | |
| <VirtualHost *:80> | |
| ProxyRequests off | |
| ServerName d-12.qa1.eucalyptus-systems.com | |
| <Proxy balancer://cloud-services> | |
| BalancerMember http://10.111.5.137:8773 | |
| BalancerMember http://10.111.5.138:8773 | |
| Order Deny,Allow | |
| Deny from none | |
| Allow from all | |
| ProxySet lbmethod=byrequests | |
| </Proxy> | |
| ProxyPass / balancer://cloud-services/ | |
| </VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment