Hi Florian,<br><br>Thanks for the reply, its works now. I have across another problem, our backend portal requires a login and password and tracks users sessions.<br><br>How do you prevent these authenticated sessions from getting cached?<br>
<br>Regards,<br>Sheldon<br><br><div class="gmail_quote">On Tue, Jun 22, 2010 at 3:37 PM, Florian Holzhauer <span dir="ltr">&lt;<a href="mailto:fh-varnish@fholzhauer.de">fh-varnish@fholzhauer.de</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
Am 22.06.10 11:21, schrieb Sheldon Dsouza:<div><div></div><div class="h5"><br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
I have installed Varnish on my production server, the configuration is<br>
attached. I tried to get a few stats using the varnishhist command,<br>
according to the stats a pipe &quot;|&quot; indicates cache hits<br>
<br>
I dont see any pipes in my display, i have attached the out of the stats<br>
in the varnish.txt file. What am i doing wrong?<br>
</blockquote>
<br></div></div>
On a first brief look:<br>
If I do not recall it completely wrong, the error is the return(pass) as the default in vcl_fetch.<br>
<br>
&quot;In this mode, the request is passed on to the backend, and the backend&#39;s response is passed on to the client, but is not entered into the cache. Subsequent requests submitted over the same client connection are handled normally.&quot; - so basically, you are bypassing the cache.<br>

<br>
The correct should be return (deliver);<br>
<br>
Cheers,<br><font color="#888888">
Florian.<br>
</font></blockquote></div><br>