[squid-users] Filtering based on content size.

From: Supratik Goswami <supratik.goswami_at_webyog.com>
Date: Wed, 27 Apr 2011 15:36:52 +0530

The reply_body_max_size directive prevents users from downloading very
large files.

The following configuration in Squid only allows download of size 15MB
from IP range
mentioned in the acl officelan. If the size is more it simply
restricts the user with an
error message.

acl officelan src 192.168.1.0-192.168.1.54
reply_body_max_size 15 MB officelan

Is there any way I can do something else instead of showing the error
page to user
when the size is more than 15MB.

Something similar to the following:

if ( reply_body_max_size > 15MB )
{
      // do this;
}
else
{
     // do this;
}

Regards

Supratik
Received on Wed Apr 27 2011 - 10:07:24 MDT

This archive was generated by hypermail 2.2.0 : Thu Apr 28 2011 - 12:00:03 MDT