Restricting Acess with Squid Proxy
root@ubuntu:/etc/squid/conf.d# cat local.conf
http_port 8080
cache_dir ufs /var/spool/squid 800 16 256
acl internal src 192.168.1.0/255.255.255.0
http_access allow internal
acl blocked_websites dstdomain .facebook.com .fb.com
http_access deny blocked_websites
http_access deny all
Last updated