Skip to content

Instantly share code, notes, and snippets.

View cbeyer's full-sized avatar

Christophe Beyer cbeyer

View GitHub Profile
@ondrowan
ondrowan / default.vcl
Created February 3, 2012 15:27
default.vcl for Symfony2 based application
backend default {
.host = "127.0.0.1";
.port = "80";
}
sub vcl_recv {
if (req.http.Cache-Control ~ "no-cache") {
return (pass);
}