[squid-users] deny rep_mime_type

2015-10-21 Thread HackXBack
hello ,
can we deny rep_mime_type for specific domain ?
if yes then how 
if no then why
thank you ..



--
View this message in context: 
http://squid-web-proxy-cache.1019090.n4.nabble.com/deny-rep-mime-type-tp4673816.html
Sent from the Squid - Users mailing list archive at Nabble.com.
___
squid-users mailing list
squid-users@lists.squid-cache.org
http://lists.squid-cache.org/listinfo/squid-users


Re: [squid-users] deny rep_mime_type

2015-10-21 Thread Kinkie
Hi,
  I suspect (unverified) that

acl dom dstdomain .example.com
acl type rep_mime_type base/type
http_reply_access deny dom type
http_reply_access allow all

will do what you need

On Wed, Oct 21, 2015 at 9:36 PM, HackXBack  wrote:
> hello ,
> can we deny rep_mime_type for specific domain ?
> if yes then how
> if no then why
> thank you ..
>
>
>
> --
> View this message in context: 
> http://squid-web-proxy-cache.1019090.n4.nabble.com/deny-rep-mime-type-tp4673816.html
> Sent from the Squid - Users mailing list archive at Nabble.com.
> ___
> squid-users mailing list
> squid-users@lists.squid-cache.org
> http://lists.squid-cache.org/listinfo/squid-users



-- 
Francesco
___
squid-users mailing list
squid-users@lists.squid-cache.org
http://lists.squid-cache.org/listinfo/squid-users


Re: [squid-users] deny rep_mime_type

2015-10-21 Thread HackXBack
sorry not deny but make it miss and not hit
with
store_miss
send_hit



--
View this message in context: 
http://squid-web-proxy-cache.1019090.n4.nabble.com/deny-rep-mime-type-tp4673816p4673829.html
Sent from the Squid - Users mailing list archive at Nabble.com.
___
squid-users mailing list
squid-users@lists.squid-cache.org
http://lists.squid-cache.org/listinfo/squid-users


Re: [squid-users] deny rep_mime_type

2015-10-22 Thread Amos Jeffries
On 22/10/2015 10:00 a.m., HackXBack wrote:
> sorry not deny but make it miss and not hit
> with
> store_miss
> send_hit
> 

Then you are wanting the same as what kinkie provided, but with
store_miss instead of http_reply_access.

You know it really helps if you read the documentation. Which is
particularly easy when you already know what the directives you want to
use are.


Amos

___
squid-users mailing list
squid-users@lists.squid-cache.org
http://lists.squid-cache.org/listinfo/squid-users


Re: [squid-users] deny rep_mime_type

2015-10-22 Thread HackXBack
acl yt-loop dstdomain .googlevideo.com
acl type-yt rep_mime_type text/plain
store_miss deny yt-loop type-yt
send_hit deny yt-loop type-yt




--
View this message in context: 
http://squid-web-proxy-cache.1019090.n4.nabble.com/deny-rep-mime-type-tp4673816p4673857.html
Sent from the Squid - Users mailing list archive at Nabble.com.
___
squid-users mailing list
squid-users@lists.squid-cache.org
http://lists.squid-cache.org/listinfo/squid-users