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.
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.