Arne wrote:

So if I understand you correctly (the list and the man-page) , then practically nothing on my website would be cached using the default configuration, due to (req.request == "GET" && req.http.cookie) ?

Is there any way to ignore *only* the Google-cookies? They're consistently named __utma, __utmb, __utmc and __utmz


You might want to place this default vcl statement....

   if (req.http.Authenticate || req.http.Cookie) {


... with something in the neighborhood of this

   if (req.http.Authenticate || req.http.Cookie ~ "__ut=") {


/Anton
_______________________________________________
varnish-misc mailing list
[email protected]
http://projects.linpro.no/mailman/listinfo/varnish-misc

Reply via email to