Question:
Is it possible to make authorization in squid only if the client accesses a specific address? If so, how?
Answer:
acl restricted_site dstdomain .somedomain.ru
acl users proxy_auth user1 user2
or acl users external nt_group squid_users
, whichever is configured.
http_access allow restricted_site users http_access allow all