diff options
-rw-r--r-- | config/varnish-alaveteli.vcl | 2 |
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) { |