haproxyconf-2022/etc/varnish/conf.d/respect_cache_request_headers.recv.vcl

3 lines
148 B
Plaintext
Raw Normal View History

2022-09-17 15:15:43 +02:00
# respect Cache-Control from client
if (req.http.Cache-Control ~ "(private|no-cache|no-store)" || req.http.Pragma == "no-cache") { return (pass); }