Hello HAProxy community!
Say I am maintaining a stick table, and I have a special endpoint allDone
. After a user visits this endpoint, I am 100% confident they will not need to revisit the specific server they were working on. From what I see online, it looks like the prescribed means of deleting keys is the runtime API. However I would prefer some kind of ACL that would look like this
stick table ...
stick on req.hdr(usrname)
stick remove key req.hdr(usrname) if path_beg /allDone
Is there anything like this in the docs I am missing? Or should I maybe file a feature request?