docbrown/config/fastly/snippets/stale_while_revalidate_controls.vcl
Alex b74b035e22
[deploy] Add new VCL snippets for Fastly (#7654)
* Add new VCL snippets

* Fix specs

* Partial match Fuzz Faster

* Remove PHP
2020-05-04 10:18:19 -04:00

5 lines
113 B
Text

sub vcl_fetch {
if (req.url == "/" || req.url == "/?i=i") {
set beresp.stale_while_revalidate = 15s;
}
}