Urchin

Anton Stonor stonorn at giraffen.dk
Sat Feb 17 09:02:16 CET 2007


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



More information about the varnish-misc mailing list