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...

link|improve this question

75% accept rate
It might help if you explain what you want. Which configuration (varnish or your back-end) is sending no-cache headers? You can override these headers in Varnish, but whether this is 'correct' depends on the semantics of your responses (are they reusable, over clients, for how long, etc). – ivy Jan 25 at 22:27
@ivy, Thanks for your reply. What I am trying to accomplish is to have Varnish send cache-control headers which I manually specify, regardless of what the back-end sends to Varnish. – Kevin Gleeson Jan 26 at 15:29
feedback

1 Answer

Your back-end is sending "Cache-Control: no-cache" to Varnish which implies two things:

  • Varnish will not store the response in the cache (so a next lookup will fail)
  • Your clients (browsers and intermediate proxies) will not cache responses (and request them over and over).

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:

sub vcl_fetch {
  remove beresp.http.Cache-Control;
  set beresp.http.Cache-Control = "public";
}

You can choose to only do this for certain urls (wrap it in ( if req.url ~ "" ) logic) and do way more advanced stuff.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.