Justin Willoughby wrote:
> This what I have tried:
>
> acl admin proxy_auth jbw
> acl httpxs urlpath_regex \.zip$ \.rar$ \.exe$
>
> http_access allow admin httpxs
> http_access deny httpxs
>
> However it does not seem to be working. Going to any site
> prompts for a password. I only want it to prompt for a
> password if it matches the httpxs acl, what else should I try?
You should write it the other way around:
http_access allow httpxs admin
http_access deny httpxs
The deny line is currently not required as no requests for httpxs
resources can bypass the first line (a sideeffect of proxy_auth ACL type
evaluation), but this might change in the future so it is safest to have
it there.
-- Henrik Nordstrom Squidhacker -- To unsubscribe, see http://www.squid-cache.org/mailing-lists.htmlReceived on Fri Sep 15 2000 - 14:13:13 MDT
This archive was generated by hypermail pre-2.1.9 : Tue Dec 09 2003 - 16:55:19 MST