On Mon, 3 May 2004 Jim_Brouse/[EMAIL PROTECTED] wrote:

> I do have proxy auth working to access any page with the following:
> 
> acl AuthorizedUsers  proxy_auth REQUIRED
> http_access allow all AuthorizedUsers
> 
> Below is the acl settings to allow only one user to one particular site.
> acl acl.dstdomain dstdomain     /etc/squid/acl/acl.dstdomain
> acl acl.users proxy_auth    /etc/squid/acl/acl.users
> http_access allow acl.dstdomain
> http_access allow acl.users
> http_access deny acl.users


I think you want

http_access allow acl.dstdomain acl.users
http_access deny acl.users


See the Squid FAQ chapter 10 for details if unsure what the difference is.


In addition you need "quotes" around the filenames.. if not Squid reads
what you have wrote literally (i.e. the filename instead of the contents
of the file).


Regards
Henrik

Reply via email to