I checked my /var/log/squid/access.log file today (1 June) and it reported a
file size of 0. This is strange because I have already done some web
browsing today.
I am using squid with a proxy configuration script which reads as follows:
function FindProxyForURL(url, host)
{
if (isInNet(host, "192.168.2.0", "255.255.255.0") || shExpMatch(host,
"127.0.0.1") ||
shExpMatch(host, "localhost") shExpMatch(host, "192.168.2.1"))
{
return "DIRECT";
}
else
{
return "PROXY 192.168.2.33:3128";
}
}
Any explanation?
Received on Sat May 31 2003 - 17:06:48 MDT
This archive was generated by hypermail pre-2.1.9 : Tue Dec 09 2003 - 17:17:08 MST