Skip to content

Instantly share code, notes, and snippets.

@caius
Created April 30, 2014 08:59
Show Gist options
  • Save caius/079d50bd975d6f40e0a5 to your computer and use it in GitHub Desktop.
Save caius/079d50bd975d6f40e0a5 to your computer and use it in GitHub Desktop.
sub vcl_recv {
if (req.http.host != "www.thomas-cached-site.com" && req.http.host != "thomas-cached-site.com") {
/* We're only caching stuff for thomas-cached-site.com */
return (pass);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment