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?



Reply via email to