Le 25/09/2012 08:23, Amos Jeffries a écrit :
On 25/09/2012 5:59 p.m., Noc Phibee Telecom wrote:
Hi
i use Squid with NTLM authentification. I want restrict one user
(based on the ntlm login/pass)
atonly one website.
It's possible directly in squid ?
Of course. Use Squid ACLs...
acl fred proxy_auth fred
acl blocklist dstdomain .example.com
http_access deny blocklist fred
Amos
Thanks for your answer, but your sample it's for denied one site, me
i want denied all site and only autorise one site?
it's possible to put:
acl fred proxy_auth fred
acl denied_all dstdomain all
acl allow_site dstdomain .example.com
http_access allowed allow_site fred
http_access deny denied_all fred
correct ?
thanks