<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Thanks a lot!<br>
Working perfectly now!<br>
<br>
It seems that Varnish 3 is slower than Varnish 2.1.5 (or even Varnish
2.0.6). (benchmarked with apachebench)<br>
Could this be because of the little (test)load with limited resources
(CPU/ram) on my testserver?<br>
Will Varnish 3 be faster than v.2 when I deploy on a decent server?
(dedicated dualcore / 4GB ram)<br>
<br>
<br>
Mattias Geniar wrote:
<blockquote
 cite="mid:18834F5BEC10824891FB8B22AC821A5A017351D2@nucleus-srv01.Nucleus.local"
 type="cite">
  <blockquote type="cite">
    <pre wrap="">When I use the code below (based on the templates at
    </pre>
  </blockquote>
  <pre wrap=""><!----><a class="moz-txt-link-freetext" href="https://github.com/mattiasgeniar/varnish-3.0-configuration-templates/tre">https://github.com/mattiasgeniar/varnish-3.0-configuration-templates/tre</a>
e/master/conf.d), Drupal 7 + Varnish 3 'almost' works.
  </pre>
  <blockquote type="cite">
    <pre wrap="">Varnish is working perfectly (no backend calls, two Varnish timestamps
    </pre>
  </blockquote>
  <pre wrap=""><!---->in the header). 
  </pre>
  <blockquote type="cite">
    <pre wrap="">However, I can't log in in my Drupal site. Same behaviour with
    </pre>
  </blockquote>
  <pre wrap=""><!---->directories which are protected by .htaccess. The logon screen keeps
popping up when I enter the correct credentials.

Add the following at the bottom of the vcl receive (it's in the
"default.vcl" file on github):

if (req.http.Authorization || req.http.Cookie) {
          # Not cacheable by default
          return (pass);
}

Without it, you are indeed likely to run into problems.

You may want to check the rest of the content in default.vcl.

Regards,
Mattias


  </pre>
</blockquote>
</body>
</html>