On Nov 29, 2007 2:36 PM, Agnello George <[EMAIL PROTECTED]> wrote: > HI > I have just configured a squid proxy server. I have created a group called > marketing and allowed http access to that particular group ( following is my > config ) > > acl marketing src "/etc/squid/marketing.squid" > > http_access allow marketing > > ########################################### > > how ever i now need to give certain permission to the group *"marketing "* ( > like disallowing access to certain sites ... limiting bandwidth to this > group )
For disallowing websites acl noway url_regex "/etc/squid/block-web.txt" http_access deny noway this will block all the websites mentioned in block-web.txt. You can mention one website in each line of block-web.txt regards VK -- http://mm.glug-bom.org/mailman/listinfo/linuxers

