cc_skavenger that is exactly what I'm trying to avoid.
Maybe I should clarify. The only thing I don't want to cache are the mp3's required for an internal phone system (Onhold clips). (Bandwidth is a bit tight)The program looks up a list of available updates from the supplier and it then requests the files. The problem is the filename never changes so the cached files are used instead of the new ones.
When I extended squid.conf with
acl userdomain dstdomain .userdomain.com
no_cache deny userdomain
always direct allow userdomain
(userdomain being the domain I want to not cache from)
This doesn't work.
I was hoping I could use something like
acl MP3 url_regex .mp3$
no_cache deny MP3
to not cache a filetype but I don't know if this is correct.
My reading of the PURGE in
http://www.bmannconsulting.com/node/652 ? Or this:
http://www.squid-cache.org/Doc/FAQ/FAQ-7.html was that it would clear the cache from that domain only.
Am I on the right track or way off base??
Thanks