Skip to content

Instantly share code, notes, and snippets.

@ilaif
Created April 16, 2019 20:55
Show Gist options
  • Save ilaif/015bfa90f714c28550a384d737738970 to your computer and use it in GitHub Desktop.
Save ilaif/015bfa90f714c28550a384d737738970 to your computer and use it in GitHub Desktop.
instrument-everything-blog-original-code
sub vcl_recv {
#FASTLY recv
if (req.method != "HEAD" && req.method != "GET" && req.method != "FASTLYPURGE") {
return(pass);
}
return(lookup);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment