Haproxy

HAProxy - 根據請求主機添加響應標頭

  • April 20, 2018

我設置了一個 HAProxy 來將流量重定向到一些內部伺服器。

我要做的是根據請求主機設置一些響應標頭。不幸的是,我無法讓它工作。

目前設置如下所示

acl mywebsite req.hdr(host) -i example.com

http-response set-header X-Frame-Options SAMEORIGIN if mywebsite
http-response set-header X-XSS-Protection 1;mode=block if mywebsite
http-response set-header X-Content-Type-Options nosniff if mywebsite

據我了解,http-response set-header 無法讀取請求標頭。有沒有辦法解決?

您可以使用set-var

  http-request set-var(txn.host) hdr(Host)
  acl myhost var(txn.host) -m str example.com
  http-response set-header X-Frame-Options SAMEORIGIN if myhost

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