I am hoping someone can advise on the proper method for getting Varnish to send cache-control headers. Currently, my configuration is sending "Cache-Control: no-cache" to clients.
Thanks in advance to anyone who might be able to help...
|
I am hoping someone can advise on the proper method for getting Varnish to send cache-control headers. Currently, my configuration is sending "Cache-Control: no-cache" to clients. Thanks in advance to anyone who might be able to help...
| |||||
feedback
|
|
Your back-end is sending "Cache-Control: no-cache" to Varnish which implies two things:
The solution is simple: remove the cache-control headers after fetching the response from the back-end (and before storing them in the cache). In your vcl file do:
You can choose to only do this for certain urls (wrap it in | |||
|
feedback
|