Have a iRule that forces uri's into the cache.
when HTTP_REQUEST {
if { [HTTP::header "Content-Type"] contains "jpg" } {
CACHE::enable
}
}
Seems this item will be cached forever or until the cache is forcibly emptied. Is there a way we can add an expiry to these items?