> Hi all, > > I entered > > acl PURGE method PURGE > acl localhost src 127.0.0.1 > http_access allow PURGE localhost > http_access deny PURGE > > in my squid.conf file from the advice given at > > http://www.squid-cache.org/Doc/FAQ/FAQ-7.html#ss7.5 > > Now when I start Squid I get the warning > > # /usr/local/sbin/squid > 2005/03/09 18:25:59| WARNING: '127.0.0.1' is a subnetwork of > '127.0.0.1' > 2005/03/09 18:25:59| WARNING: because of this '127.0.0.1' is ignored > to keep splay tree searching predictable > 2005/03/09 18:25:59| WARNING: You should probably remove '127.0.0.1' > from the ACL named 'localhost' > > > So I changed it to > > acl PURGE method PURGE > acl localhost src 127.0.0.1/32 > http_access allow PURGE localhost > http_access deny PURGE > > > But still I get the same warning!!! > > Could someone please tell me how to fix this issue??? > > Is, by accident (e.g), the acl 'localhost' defined somewhere else (too) in squid.conf ? M.