ansible-roles/boost-proxy/templates-examples/varnish/conf.d/respect_cache_request_headers.recv.vcl

5 lines
152 B
Plaintext

# respect Cache-Control from client
if (req.http.Cache-Control ~ "(private|no-cache|no-store)" || req.http.Pragma == "no-cache") {
return (pass);
}