[Seaside] Nginx Load-Balancing Experiences ?

Sven Van Caekenberghe sven at stfx.eu
Wed Mar 26 11:08:41 UTC 2014


Hi,

I am about to try to figure out how to do sticky load-balancing for multiple Seaside instances using Nginx (I know how to do it using Apache).

I currently have this working:

upstream t3-mobile {
         server localhost:9090;
#        server localhost:9091;
#        server localhost:9092;
#        server localhost:9093;
}        

server {
        listen 443 ssl;

        location / {
                 proxy_pass http://t3-mobile;
        }
}

I just have to get the stickiness in. There seems to be a difference in available options between the open source and commercial versions.

Any experiences, recommendations, pointers ?

TIA,

Sven


More information about the seaside mailing list