Skip to content

Instantly share code, notes, and snippets.

@zdk
Created December 16, 2010 05:05
Show Gist options
  • Save zdk/743054 to your computer and use it in GitHub Desktop.
Save zdk/743054 to your computer and use it in GitHub Desktop.
plain varnish configuration
backend default {
.host = "127.0.0.1";
.port = "3000";
}
sub vcl_fetch {
if (req.url == "/esi") {
esi;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment