Sur varnish 3, il fallait ajouter du code c pour ajouter le header Expires correspondant au max-age du Cache-Control :
Varnish : transformer le Cache-Control : max-age en Expires
Maintenant une ligne suffit :
Dans le vcl_backend_response :
if (beresp.http.cache-control ~ "max-age=" ) { set beresp.http.Expires = "" + (now + std.duration(regsub(beresp.http.cache-control,"max-age=([0-9]+).*$","\1")+"s", 0s)); }
ou dans le vcl_deliver :
if (resp.http.cache-control ~ "max-age=" ) { set resp.http.Expires = "" + (now + std.duration(regsub(resp.http.cache-control,"max-age=([0-9]+).*$","\1")+"s", 0s)); }