<html>
  <head>
    <meta content="text/html; charset=windows-1252"
      http-equiv="Content-Type">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    Hi,<br>
    <br>
    There is no such thing as req.backend, I think what you are looking
    for is req.backend_hint but as you only have the default backend
    defined you do not need to specify it at all. You should however add
    "set" in front of the setting of the variables and the line "vcl
    4.0;" first in the file as I hope you are running Varnish 4 or
    later.<br>
    <br>
    <blockquote>vcl 4.0;<br>
      <br>
      backend default {
      <br>
              .host = "46.228.47.114";
      <br>
              .port = "https";
      <br>
      }
      <br>
      <br>
      sub vcl_recv {
      <br>
              set req.http.host = "<a class="moz-txt-link-abbreviated" href="http://www.yahoo.com">www.yahoo.com</a>";
      <br>
      }
      <br>
    </blockquote>
    <br>
    Best regards,<br>
    Viktor<br>
    <br>
    <div class="moz-cite-prefix">On 14/10/15 13:01, dE wrote:<br>
    </div>
    <blockquote cite="mid:561E3615.8030508@gmail.com" type="cite">Hi!
      <br>
      <br>
      I got this VCL --
      <br>
      <br>
      backend default {
      <br>
              .host = "46.228.47.114";
      <br>
              .port = "https";
      <br>
      }
      <br>
      <br>
      sub vcl_recv {
      <br>
              req.backend = "default";
      <br>
              req.http.host = "<a class="moz-txt-link-abbreviated" href="http://www.yahoo.com">www.yahoo.com</a>";
      <br>
      }
      <br>
      <br>
      But running varnishd complaints --
      <br>
      <br>
      Message from VCC-compiler:
      <br>
      Expected an action, 'if', '{' or '}'
      <br>
      ('input' Line 9 Pos 9)
      <br>
              req.backend = "default";
      <br>
      --------###########-------------
      <br>
      <br>
      Running VCC-compiler failed, exit 1
      <br>
      <br>
      VCL compilation failed
      <br>
      <br>
      Thanks for any help!
      <br>
      <br>
      _______________________________________________
      <br>
      varnish-misc mailing list
      <br>
      <a class="moz-txt-link-abbreviated" href="mailto:varnish-misc@varnish-cache.org">varnish-misc@varnish-cache.org</a>
      <br>
      <a class="moz-txt-link-freetext" href="https://www.varnish-cache.org/lists/mailman/listinfo/varnish-misc">https://www.varnish-cache.org/lists/mailman/listinfo/varnish-misc</a>
      <br>
    </blockquote>
    <br>
  </body>
</html>