问题
Can I block https://www.facebook.com through Squid? It is working very nicely except HTTPS sites I am using Squid 3.1 in Debian 7
回答1:
Yes, you can. You should also block it with CONNECT:
acl fb dstdomain .facebook.com
http_reply_access deny fb
http_access deny CONNECT fb
then:
squid3 -k reconfigure
or
squid -k reconfigure
Now, it is done!
来源:https://stackoverflow.com/questions/25518442/blocking-https-sites-through-squid