Haproxy

HAProxy 拒絕粘貼特定路徑

  • December 1, 2020

所以,這就是問題所在。我正在嘗試使用以下方法將 uri 粘貼到表格中:

stick on path,word(1,/) table nodes

我需要做的是拒絕堅持特定的路徑,例如:

/sounds
/libs
/css
/images

因為,如果首先將使用者分配給第一個節點,則第二個使用者和第三個使用者將必須獲得分配給第一個使用者的節點的那些路徑。

stick on支持條件(https://cbonte.github.io/haproxy-dconv/2.2/configuration.html#4-stick%20on

我不明白你為什麼這樣做(可能是記憶體?),所以有機會可能是錯誤的,但應該這樣做(未經測試):

acl url_ignore_stick path_beg /sounds
acl url_ignore_stick path_beg /libs
acl url_ignore_stick path_beg /css
acl url_ignore_stick path_beg /images
stick on path,word(1,/) table nodes unless url_ignore_stick

引用自:https://serverfault.com/questions/1044504