Trying to figure out if there is a way to reload a blacklist of ips that HA uses to block without having to do a full reload of HAProxy.
I have many frontends and in all of them is the following:
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
I pull the abuseipdb list from an external source to keep it up to date, all good but to get that update live I also have to reload HAProxy. I’m hoping there is some way via the API to just reload the contents of this file. Any ideas?
1 post - 1 participant