Forcing No-Cache
Just what we all love: Sending headers from the origin
no-cache
no-store
max-age=0
private
must-revalidateNot caching or bypassing the cache of the CDN
Bypass or ignore the cache of the CDN
sub vcl_recv {
if (req.http.host == "www.transparent.com" && req.url ~ "^/admin") {
call bypass_cache;
}
} Don’t cache the object in the CDN by rewriting the origin headers
Last updated
Was this helpful?
