Skip to content

Instantly share code, notes, and snippets.

@baldur
Created September 11, 2014 19:36
Show Gist options
  • Save baldur/591012e6dc688363e1dd to your computer and use it in GitHub Desktop.
Save baldur/591012e6dc688363e1dd to your computer and use it in GitHub Desktop.
backend cache {
.host = "s3bucket";
}
backend tilestash {
.host = "tilestashhost";
.port = "8000";
}
sub vcl_recv {
if (req.restarts == 0) {
set req.backend = default;
} else {
set req.backend = backup;
}
}
sub vcl_fetch {
if (beresp.status == 404) {
return (restart);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment