Hey list, I am looking for a way to limit HTTP connections for a server which is part of several backends. I have a configuration like this:
backend be1 server srv1 192.168.0.1 maxconn 100 server srv2 192.168.0.2 maxconn 100 backend be2 balance uri whole server srv1 192.168.0.1 maxconn 100 server srv2 192.168.0.2 maxconn 100 Only some requests (based on req header and uri) need to be sticky, but I want a "global" connection limit for srv1 of 100. With the above config it would be 2 x 100. Is there some way to achieve this, without putting all the logic into one big backend? thank you, ~stephan

