<div dir="ltr">Hi folks. In order to make diagnostics easier, in v3 I would set some headers so we could see in the browser how Varnish decided which Director and backend to use.<div><br></div><div>So in vcl_recv, we would make all sorts of judgements based on host names and urls etc, then set the backend to the relevant director:</div><div><br></div><div>    if (req.host == "<a href="http://mydomain.com">mydomain.com</a>") {</div><div>        set req.backend = product1_randomdirector;</div><div>    }</div><div>    if (req.host == "<a href="http://myotherdomain.com">myotherdomain.com</a>") {</div><div>        set req.backend = product2_clientdirector;</div><div>    }</div><div>    ....<br></div><div>    set req.http.X-Director = req.backend;</div><div><br></div><div>And then later on in vcl_deliver, I would put that into information into a header so we can see it in the browser (if it is a trusted IP):</div><div><br></div><div>    set resp.http.X-Host = req.http.host;</div><div>    set resp.http.X-Director = req.http.X-Director;</div><div><br></div><div>But in v5, I don't set the backend to a director, I set it to an actual backend:</div><div><br></div><div><div>    if (req.host == "<a href="http://mydomain.com">mydomain.com</a>") {</div><div>        set req.backend_hint = product1_randomdirector.backend();</div><div>    }</div><div>    if (req.host == "<a href="http://myotherdomain.com">myotherdomain.com</a>") {</div><div>        set req.backend_hint = product2_sharddirector.backend(KEY, product2_sharddirector.key(req.http.X-Real-Ip));</div><div>    }</div></div><div><br></div><div>How can I set a response header with the director that was chosen? I need to be able to have tests that look at the X-Director for a give request, to confirm the correct choices are being made. I'd rather not manually set a header every time I use `set backend_hint`.</div><div><br></div><div>thanks,</div><div><br></div><div>Mark</div></div>