Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Varnish and Google Analytics

I don't quite understand how Google Analytics cookies work with Varnish.

  • Do pages that contain GA cookie not get cached?
  • Do I need to remove the GA cooke in vcl_recv?
  • If I do remove them, does that stop GA tracking visitors?
like image 411
Tom Avatar asked Jul 26 '10 10:07

Tom


1 Answers

Cookies invalidate the cache if the Vary header is not set. For example, a client that goes to a URL with a certain login cookie will receive a different page than a client with a different cookie.

In order to cache a page that has cookies that do not affect the cache-ability of the page (for example, Google Analytics on static sites), the cookies must be stripped or the cache won't know whether two pages should be considered the same resource.

like image 133
kern Avatar answered Nov 10 '22 02:11

kern