Hello,<br><br>I have a joomla system behind varnish 2.1 caching server. I am trying to establish VCL rules that pass (or pipe) traffic if certain login conditions are met. Joomla has an expired headers plugin that can set the "Pragma = no-cache" request http header if the user is trying to login.<br>
<br>My corresponding vcl_recv rule looks like the following :<br><br>if (req.http.Pragma ~ "no-cache"){<br>set req.backend = iamloggedin;<br>return(pass);<br>}<br><br>Whats happening when I try to login is I believe the login session gets created, but the page doesnt get updated. When I look at the headers for the index.php after you click "login" , I see a response from varnish "304 not modified" ,and it just shows me a cached version of the page.<br>
<br>Do I need to set corresponding "Pragma" rules in vcl_deliver or vcl_fetch ? Why would this happen if i explicitly tell varnish to pass or pipe the traffic if "no-cache" is present?<br><br>Thanks!<br>