如何在 Squid3 ubuntu 中记录完整 URL?

问题描述 投票:0回答:2

我已将 Squid3 代理安装到 ubuntu 服务器中,一切正常,但当我检查日志文件时,Squid 会记录 url,但如果该 url 有(?),则他只记录之前的内容?标记并跳过其后面的内容。

Exp,如果我尝试访问此网址:http://www.youtube.com/results?search_query=bmw

squid 会将其记录为:http://www.youtube.com/results?

我在这里问如何配置squid3来记录完整的url?

谢谢, 优素福

ubuntu logging proxy squid
2个回答
8
投票

将此行添加到您的squid.conf中:

strip_query_terms 关闭

更多信息请参见:strip_query_terms


0
投票

供您考虑,strip_query_terms off 仅适用于 http 请求。你可能需要这个来处理 https 请求

© www.soinside.com 2019 - 2024. All rights reserved.