Skip to content

Instantly share code, notes, and snippets.

@netbrain
Created March 28, 2012 09:00
Show Gist options
  • Select an option

  • Save netbrain/2224917 to your computer and use it in GitHub Desktop.

Select an option

Save netbrain/2224917 to your computer and use it in GitHub Desktop.
varnish config test
sub vcl_recv {
if(req.request == "PUT" && req.url ~ "^/api/0.1/userMedia"){
ban ("req.url == '/api/0.1/user'");
return(pass);
}
if(req.url ~ "^/api/0.1"){
return(lookup);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment