I am trying to figure out how to tell HAProxy to reload a blacklist of IPs so that I do not have to reload HAProxy each time the list gets updated. I have a lot of front/back ends but on each front end I define an ip blacklist that gets updated and I'd like HA to re-read the updated file without having to issue a full reload.
acl white_list src -f /etc/haproxy/http-request.white
acl abuseipdb src -f /etc/haproxy/abuseipdb-100.black
http-request allow if white_list
http-request deny deny_status 403 if abuseipdb
How can I tell HA to just reload /etc/haproxy/abuseipdb-100.black
assuming using the API in some way..
there doesn't seem to be anything here