exclude an URL from caching in squid

You might want to update your installation of squid. 3.0STABLE12 was just released.

But in answer to your question, here is what you want in your squid.conf:

acl no_cache_server1 dstdomain .domain.com
no_cache deny no_cache_server1

acl no_cache_server2 dstdomain .domain2.com
no_cache deny no_cache_server2

acl no_cache_server3 dstdomain .domain3.com
no_cache deny no_cache_server3

Hope this helps you out.
 
geeknik said:
You might want to update your installation of squid. 3.0STABLE12 was just released.

But in answer to your question, here is what you want in your squid.conf:



Hope this helps you out.

thx, but I've read squid3 uses cache deny ... instead of no_cache deny.
 
Back
Top