Q: How to block Youtube fash videos in squid proxy server?
Add the below configurations to squid.conf file.
[root@server ~#]vi /etc/squid/squid.conf#1: Create an acl for flash video contents
acl flash rep_mime_type video/x-flv
#2: Deny flash videos by denying the above acl
http_reply_access deny flash
#Save the squid.conf file
#3: Reload squid service to take effect changes
[root@server ~#]service squid reload
More Squid Related Articles
block flash ads in squid
More Squid Related Articles
block flash ads in squid
1 comments:
Thanks for the Script...
I am able to block the flash content but when user is trying through https:// the flash content is not blocking for example if user access http://youtube.com the flash get blocked but when user types https://youtube.com it won't...
Post a Comment