[squid-users] Block all known image files with squid?

2013-05-26 Thread Squidblacklist
Anyone ever tried to block multiple image types with squid? Im thinkin these 5 file types outta be sufficient for this experiment. .jpg, .png, .jpeg, .gif, .bmp, .ico, - Signed, Fix Nichols http://www.squidblacklist.org

Re: [squid-users] Block all known image files with squid?

2013-05-26 Thread Alex Domoradov
You could try something like following acl FORBIDDEN_EXT urlpath_regex \.(jpg|png|jpeg|gif|bmp|ico)$ http_access deny FORBIDDEN_EXT also you could try use of req_mime_type acl type On Sun, May 26, 2013 at 12:47 PM, Squidblacklist webmas...@squidblacklist.org wrote: Anyone ever tried to block