aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSeb Bacon <seb.bacon@gmail.com>2012-02-03 12:51:31 +0000
committerSeb Bacon <seb.bacon@gmail.com>2012-02-03 12:51:31 +0000
commite13dbbdccfd3550076469e83536b8bd10315a26b (patch)
treea55485e50b059b6e9e43a776c0e7a25c9364365f
parentf02f6d9f5ef19b1b1ed05e2bcfa89b49836a97e3 (diff)
Don't strip last_seen_* cookies. Fixes #405
-rw-r--r--config/varnish-alaveteli.vcl2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/varnish-alaveteli.vcl b/config/varnish-alaveteli.vcl
index d6c42e750..c31b63678 100644
--- a/config/varnish-alaveteli.vcl
+++ b/config/varnish-alaveteli.vcl
@@ -28,7 +28,7 @@ sub vcl_recv {
set req.http.X-Forwarded-For = client.ip;
# Remove Google Analytics, has_js, and last-seen cookies
- set req.http.Cookie = regsuball(req.http.Cookie, "(^|;\s*)(__[a-z]+|has_js|last_body_id|last_request_id|seen_foi2)=[^;]*", "");
+ set req.http.Cookie = regsuball(req.http.Cookie, "(^|;\s*)(__[a-z]+|has_js|seen_foi2)=[^;]*", "");
# Normalize the Accept-Encoding header
if (req.http.Accept-Encoding) {