View Single Post
  #1  
Old 03-27-2008, 01:04 PM
zellster zellster is offline
Senior Member
 
Join Date: Sep 2004
Posts: 55
Default Round robin with Zope?

Hello,

I am planning to run multiple instances of Zope as an application server. There will be 1 or more Zope web servers running on back-end machines being served through a front-end web server.

nginx can distribute requests via weighted round-robin given a configuration like the following:

upstream zope {
server 192.168.123.45:8080;
server 192.168.123.45:8081;
server 192.168.123.46:8080;
server 192.168.123.46:8081;
}

Can LSWS do something similar, or would I need LSLB?

Thanks.
Reply With Quote