Skip to content

Instantly share code, notes, and snippets.

@kakerukaeru
Created December 21, 2015 11:18
Show Gist options
  • Save kakerukaeru/4917cd17b4f068b8faff to your computer and use it in GitHub Desktop.
Save kakerukaeru/4917cd17b4f068b8faff to your computer and use it in GitHub Desktop.
sub vcl_recv {
if (req.url ~ "^/hogehoge") {
set req.backend_hint = hogehoge;
return (pass); // ← remove code
}
...
}
sub vcl_backend_response {
 ...
if (bereq.backend == hogehoge) { // ← add code
set beresp.ttl = 3600s; // ← add code
} // ← add code
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment