Created
September 20, 2016 15:34
-
-
Save ThijsFeryn/28d3f467aac015a5ec8019d504e950d3 to your computer and use it in GitHub Desktop.
Returning custom VCLs on-the-fly
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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