How to let specific subdomain through Squid Proxy?
- by armani
I need to allow Facebook.com/MyOrganization, but nothing else from Facebook.com.
I tried:
acl local_c src 192.168.0.0/16
acl fb_ok urlpath_regex ^/MyOrganization
acl fb dstdomain .facebook.com
http_access allow local_c fb_ok
http_access deny local_c fb
But that simply brings down all of Facebook, including the page I want.
Anybody have experience in this? Lots of Googling got me nowhere, and Regular Expressions confuse me...