Skip to content

Instantly share code, notes, and snippets.

@jelder
Created January 26, 2011 20:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jelder/797372 to your computer and use it in GitHub Desktop.
Save jelder/797372 to your computer and use it in GitHub Desktop.
Remove Google Analytics cookies from Varnish
sub vcl_recv {
if (req.http.Cookie) {
set req.http.Cookie = regsuball(req.http.Cookie, "(^|; ) *__utm.=[^;]+;? *", "\1");
if (req.http.Cookie == "") {
remove req.http.Cookie;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment