<div dir="ltr">Hi Tim,<div><br></div><div><br></div><div class="gmail_extra"><br><div class="gmail_quote">On Sun, Nov 9, 2014 at 5:12 AM, Tim Dunphy <span dir="ltr"><<a href="mailto:bluethundr@gmail.com" target="_blank">bluethundr@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hey all,<div><br></div><div> I tried to add my wiki host to my VCL in the hopes of giving it a little speed boost. </div><div><br></div><div> However it seems that when I put the vcl into place and cycling varnish that the 'wiki' back end is never selected. My main website gets pulled up in the browser when I enter in the wiki URL. </div><div><br></div><div>Can someone maybe take a look and let me know what I'm doing wrong in my VCL logic?</div><div><br></div><div>







<p>    if ( req.url ~ "<a href="http://wiki.mydomain.com" target="_blank">wiki.mydomain.com</a>") {<br></p>
<p>        set req.backend = www;</p></div></div></blockquote><div><br></div><div>There are two mistakes here it seems. Firstly req.url contains the URL part without the host. The host is in req.http.host. Furthermore I think you meant !~ here.</div><div><br></div><div>So what you want is</div><div><br></div><div> if (req.http.host ≈ "<a href="http://wiki.mydomain.com">wiki.mydomain.com</a>") {</div><div>      set req.backend = wiki;</div><div> }</div><div> </div><div><br></div><div>Per. </div></div><div><br></div>-- <br><div class="gmail_signature"><div dir="ltr"><table border="0" cellpadding="0" cellspacing="0" style="border-bottom-width:1px;padding-top:5px;border-top-style:solid;width:550px;padding-bottom:5px;border-bottom-color:rgb(238,238,238);border-top-width:1px;border-bottom-style:solid;line-height:1.5em;border-top-color:rgb(238,238,238);color:rgb(102,102,102);font-size:12px;font-family:'Helvetica Neue',Arial,sans-serif;margin-top:20px"><tbody><tr><td width="100"><img src="http://www.varnish-software.com/static/media/logo-email.png"></td><td><font color="#222222"><span style="font-size:14px"><b>Per Buer</b></span></font><br>CTO | Varnish Software AS<br>Cell: <a value="+4790181750" style="color:rgb(17,85,204)">+47 95839117</a><br><span style="font-weight:bold">We Make Websites Fly!<br><a href="https://www.varnish-software.com/" style="color:rgb(17,85,204)" target="_blank">www.varnish-software.com</a></span></td></tr></tbody></table><br><div style="color:rgb(136,136,136)"><a href="http://info.varnish-software.com/varnish-summits-autumn-2014-registration" style="color:rgb(17,85,204)" target="_blank"><img src="https://www.varnish-software.com/sites/default/files/u388/masters_s_0.png" alt=" Register now"></a></div></div></div>
</div></div>