Haproxy multiple acl using the same name

I am in the middle of writing a new configuration for HAProxy. What I want to do is this.

acl ccbill src 64.38.212.0/24
acl ccbill src 64.38.215.0/24
acl ccbill src 64.38.215.0/24
acl ccbill src 64.38.215.0/24
use_backend admin-chat if ccbill

      

I'm just wondering if you can set the acl like this using the same name for multiple IPs

thank

+3


source to share


1 answer


Yes, you can. HAProxy handles logical OR between each ACL.



+4


source







All Articles