Domain

如何讓 Squid 根據推薦允許訪問?

  • October 31, 2011

我有一個非常特殊的需要,即允許訪問一組未知的域,它們都有一個共同的域作為推薦。

反過來說,我有一個網站,其中包含來自一組未知域的項目(js、圖像、css 等),我需要允許訪問這些域。

我知道推薦是在客戶端設置的,可以編輯。在這種情況下,這不是問題,因為使用者已經通過憑據進行身份驗證並登錄。

在 Squid 中是否允許基於推薦的訪問?

您可以使用引用者 acl-type - 引用手冊

acl aclname referer_regex [-i] regexp ...
 # pattern match on Referer header [fast]
 # Referer is highly unreliable, so use with care

應該工作的範例配置:

acl myreferer referer_regex -i ^http://www.example.org
http_access allow myreferer

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