2015-08-14 105 views
0

我想創建一個代理服務器,當我嘗試訪問某些URL時,服務器連接到另一臺服務器,其他URL將維護常規代理服務。有誰知道如何設置這個在squild?Squid配置不同的代理規則

回答

0

指定域(我嘗試訪問某些URL,服務器連接到另一臺服務器,其他URL將維護常規代理服務)。

如果你想連接到另一臺服務器的谷歌的請求,

定義ACL作爲

ACL alloweddomains dstdomain google.com google.co.uk

U可以簡單地指定一個文本文件中的所有域和加載它在acl

acl alloweddomains dstdomain "<path>/domains.txt" 

然後使用cache_peer選項。

cache_peer next_server_ip parent 80 0 no-query originserver name=allowserver 
cache_peer_access allowserver allow alloweddomains 
cache_peer_access deny all 
+0

這不是我想要的。允許的域名不是我所需要的。我需要像mycomputer(去谷歌) - > myproxy(連接到谷歌),和我的電腦(去雅虎) - >代理 - >另一個代理 - >雅虎 –