> web server here: --> http://www.hantsch.co.at/_temp/av-squid.conf > > >>>>>>>>>>>>
I think the problem is on these lines as http_access allow manager localhost http_access deny manager .. ... #Allow ICP queries from eveyone icp_access allow all >>>> http_access deny manager After allowing the local hosts,It will block the cached object using the HTTPS ports while accessing the page. So access is denied.So the cache permission for the Safe_ports are denied.So the pages using the Safe_ports(443-https) will not be cached. The access is not denied to them. Check this changed one, no_cache deny Safe_ports http_access allow manager localhost http_access deny !Safe_ports http_access deny CONNECT !SSL_ports http_access deny all icp_access allow all It will work. Regards, Muthukumar.
