Squid free domain prompt authentication
- by Tobia
i have a squid proxy, i would like to leave free access (without proxy login prompt) to some domains and request a user login for all other domains.
I tried this configuration:
http_access allow allowDomains
http_access deny !loggedUser
where allowDomains is an acl with all free-domains, and loggedUsers is the user authentication acl.
With this configuration i can access free domains also with an empty login, but what i would like to do is to not ask authentication at all (no prompt)... how can i do?
Thanks.