> On Fri, Feb 15, 2008 at 4:24 AM, Amos Jeffries <squid3@xxxxxxxxxxxxx> > wrote: >> >> *Where* in squid.conf is rather important. If it's at the end then it >> may >> be useless. >> >> Amos > > Hello, > > Below is my squid.conf (comments removed), anyone can take a fast look...? > ======================================== > > > acl manager proto cache_object > acl localnet src 127.0.0.0/8 > acl localnet src 172.39.210.0/24 > > acl Safe_ports port 81 > ... > http_access deny !Safe_ports There it is... This denies all traffic to any port except 81. Your parent cache and most webserver are on port 80. ... > http_port 81 accel vhost > cache_peer 127.0.0.1 parent 80 0 no-query originserver > acl localsites dstdomain all > http_access allow all I assume you meant that ACL to be something like this? acl in_traffic myport 81 Amos