On Tue, 8 Feb 2005, Oliver Hookins wrote:
http_access allow AuthGroup
http_access allow SURFING
http_access allow allowedsites
http_access deny all
Will that do it, and grab authentication details for every request?
Yes, but I would not recommend leaving allowedsites world open like this.
acl mynetwork src ......
http_access deny !mynetwork
http_access allow AuthGroup
http_access allow SURFING
http_access allow allowedsites
http_access deny all
or alternatively (effectively the same thing)
http_access allow mynetwork AuthGroup
http_access allow SURFING
http_access allow mynetwork allowedsites
http_access deny all
Regards
Henrik