Skip to content

Instantly share code, notes, and snippets.

@ThijsFeryn
Created September 20, 2016 15:34
Show Gist options
  • Select an option

  • Save ThijsFeryn/28d3f467aac015a5ec8019d504e950d3 to your computer and use it in GitHub Desktop.

Select an option

Save ThijsFeryn/28d3f467aac015a5ec8019d504e950d3 to your computer and use it in GitHub Desktop.
Returning custom VCLs on-the-fly
sub vcl_recv {
if (req.http.host == "blog.feryn.eu") {
return(vcl(blog_vcl));
}
if (req.http.host == "talks.feryn.eu") {
return(vcl(talks_vcl));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment