6

I have three servers in the backend, with a round robin director.

I would like varnish to write a X-Server-By header with the name or ip of the server from which the response was fetched, how can this be done?

4 Answers4

12

In Varnish 3.0.2 I use:

sub vcl_fetch {
    set beresp.http.X-Backend = beresp.backend.name;
}

Works perfectly.

thepearson
  • 870
  • 10
  • 18
  • 2
    For Varnish 4, `vcl_fetch` has been renamed `vcl_backend_response`. Otherwise this works there too. – Pete Jul 31 '14 at 21:50
4
sub vcl_fetch {
    set obj.http.X-Backend = req.backend;
}

Tested on 2.0.6 in my (non round robin) setup. It should give you something to go on.

rossnz
  • 659
  • 4
  • 7
3

You can set the header on your web server eg x-host: server2 and then varnish will return that as part of the response to a cache hit.

I have this working on apache and it works perfectly.

Nirav24x7
  • 31
  • 1
  • Do it this way, trying to set the header in Varnish doesn't make sense. Set it at the backend itself and Varnish will pass it on to the client. – Pax Jul 11 '12 at 19:11
-1

The following is not tested, but might get you started:

sub vcl_deliver {
    set resp.http.X-Served-By = server.hostname;
    deliver;
}
Conor McDermottroe
  • 948
  • 1
  • 7
  • 17