How to configure blacklist for Squid
Hello. Have you configured Squid ( how to do it) and now want to add a blacklist? Very simple. Create a text file containing the addresses of the sites you want to block and add in the Squid configuration file (/etc/squid/squid.conf) acl urlblock dstdom_regex “full_path_to_file” http_access deny urlblock where “full_path_to_file” means the path+name of the file you just created. Warning: http_access deny urlblock must be inserted before the “allow” statements. ...