Hi
The gzip problem can be circumvented with since revision r1398.
Simply add the following to a varnish vcl script:
sub vcl_hash
{
if (req.http.Accept-Encoding) {
set req.hash += req.http.Accept-Encoding;
}
}
Denis Ahrens