Skip to content

Instantly share code, notes, and snippets.

@lestrrat
Created May 19, 2009 04:25
Show Gist options
  • Save lestrrat/113913 to your computer and use it in GitHub Desktop.
Save lestrrat/113913 to your computer and use it in GitHub Desktop.
sub vcl_fetch {
if (!obj.cacheable) {
pass;
}
if ( obj.status == 404 ) {
restart;
}
elseif (req.request == "GET" && obj.http.Content-Type ~ "html" ) {
esi; /* Do ESI processing */
set obj.ttl = 1 h;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment