Skip to content

Instantly share code, notes, and snippets.

@cosimo
Created August 31, 2012 08:32
Show Gist options
  • Save cosimo/3550275 to your computer and use it in GitHub Desktop.
Save cosimo/3550275 to your computer and use it in GitHub Desktop.
sub vcl_fetch {
# ...
if (beresp.http.Cache-Control ~ 'no-cache') {
set beresp.ttl = 0s;
return (deliver);
}
# ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment