>Is the any way to block HTTPS for some web sites? > >I have to block access to Gmail accounts. > >It's done for http but I did not find any solution for https. > >This is part of my configuration: > >acl gmail1 dstdomain google.com >acl gmail2 dstdomain google.ca >http_access deny CONNECT gmail1 gmail2 This just came up yesterday, use something like a regex and match google.com or google.ca and block like this for eg: acl test url_regex google\.com http_access deny test Or put the list in a file to make it easier to maintain. Check the man page, url_regex is case sensitive... jlc