Commit 6cba0f1
committed
feature #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 (closes #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-age1 file changed
+8
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
57 | 57 | | |
58 | 58 | | |
59 | 59 | | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
60 | 68 | | |
61 | 69 | | |
62 | 70 | | |
| |||
0 commit comments