使Squid代理对User-Agent标头透明

时间:2014-03-23 21:16:20

标签: proxy squid

当我使用我的代理服务器(基于Squid3)时,代理服务器正在更改我的User-Agent请求标头。

例如,如果我的浏览器真实代理是:

Mozilla/5.0 (Windows NT 6.3; WOW64; rv:27.0) Gecko/20100101 Firefox/27.0

使用我的代理服务器后,User-Agent为空 - 由Squid代理服务器更改。

Squid服务器是否可能无法更改user-agent?按原样转移。

2 个答案:

答案 0 :(得分:2)

找到解决方案:

request_header_access User-Agent allow all

答案 1 :(得分:1)

您必须在/etc/squid3/squid.conf

中使用以下行
sudo vim /etc/squid3/squid.conf

header_access User-Agent allow all
#  TAG: header_access
#       Since squid-3.0 replace with request_header_access or reply_header_access
#       depending on whether you wish to match client requests or server replies.

:wq

sudo service squid3 restart