You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feature symfony#3936 Varnish only takes into account max-age (gonzalovilaseca)
This PR was submitted for the 2.5 branch but it was merged into the 2.3 branch instead (closessymfony#3936).
Discussion
----------
Varnish only takes into account max-age
| Q | A
| ------------- | ---
| Doc fix? | [no]
| New docs? | [no] (PR # on symfony/symfony if applicable)
| Applies to | [Symfony version 2.3]
| Fixed tickets |
Varnish only takes into account max-age, Symfony by default returns Cache-Control: no-cache so Varnish caches it anyway. You need to specify:
```
if (beresp.http.Pragma ~ "no-cache" ||
beresp.http.Cache-Control ~ "no-cache" ||
beresp.http.Cache-Control ~ "private") {
return (hit_for_pass);
}
```
In order to avoid Varnish from caching content.
Commits
-------
466bd6a Update varnish.rst
8848549 Update varnish.rst
f958391 Varnish only takes into account max-age
0 commit comments