Changes between Version 10 and Version 11 of QuickStartServer
- Timestamp:
- Mar 17, 2011, 5:22:29 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
QuickStartServer
v10 v11 234 234 ProxyPassReverseCookiePath /gscf-0.6.6-nmcdsptest / 235 235 236 <Location /> 237 SetOutputFilter proxy-html 238 ProxyHTMLURLMap /gscf-0.6.6-nmcdsptest/ / 239 </Location> 240 236 241 <Proxy balancer://gscf-cluster> 237 242 BalancerMember ajp://localhost:8009 … … 258 263 Your site should now be up and running and listening on http://test.mysite.com (and server alias test.gscf.mysite.com) 259 264 260 265 == Loadbalancing == 266 If you, at some point in the future, require more nodes serving GSCF you can change the virtual host configuration above to include multiple BalancerMembers in the balancer configuration. For example, you could set up one Apache Webserver to act as a loadbalancer to a number of tomcat servers running on a DMZ: 267 268 {{{ 269 <Proxy balancer://gscf-cluster> 270 BalancerMember ajp://10.0.0.10:8009 271 BalancerMember ajp://10.0.0.11:8009 272 BalancerMember ajp://10.0.0.12:8009 273 BalancerMember ajp://10.0.0.13:8009 274 </Proxy> 275 }}} 276 277