Squid site restrictions
I needed a way to block some websites permanently and others outside of certain hours. After looking at some inline solutions I realised that I could easily do what was needed with squid alone. I created the following ACLs in squid’s config file : acl blockedsites url_regex -i “/etc/squid/blocked.txt” acl bannedsites url_regex -i “/etc/squid/banned.txt” acl […]