Could someone be kind enough to take a stab at this? It is really important for us to know this. And the documentation just is not clear at all. thanksJeff
From: [email protected] To: [email protected] Subject: the order of evaluation of acl's Date: Fri, 24 Oct 2014 08:12:43 -0400 What is the order of evaluation of 'and's and 'or's in a use_backend clause? This is what the docs say: [!]acl1 [!]acl2 ... [!]acln { or [!]acl1 [!]acl2 ... [!]acln } ... and apparently i cannot use paranthesis to group them. However i need to write something like the following: use_backend some_backend if ( ( acl1 acl2) or (acl3 acl4) ) or acl5

