On Wed, 3 Aug 2005, Rodrigo A B Freire wrote:

####################### The http_access section
http_access allow noporn all

This allows everyone access to requests matching noporn.

http_access deny porn all


I would rewrite the above two as

http_access deny porn !noporn

Also the use of "all" is redundant in most rules except the last.

http_access deny p2p
http_access allow all bancos
http_access allow all AuthorizedUsers
http_access deny all

For a more in-depth description of http_access see the squid-users FAQ chapter 10 Access Controls. More specifically section 1 introduction. This explains the order properties of http_access.

Regards
Henrik

Reply via email to