Dear James,
Indeed, the information you have shared is very helpful but a small correction in "sub vcl_recv" section which baffled mefor sometime as I am not sure about how to record the startup logs for varnish
It should be something like this.sub vcl_recv {
if (server.ip ~ a192_168_100_10) {
set req.backend = b192.168.100.10;
}
if (server.ip ~ a192_168_100_11) {
set req.backend = b192_168_100_11;
}
}
sub vcl_recv {
if (server.ip ~ a192_168_100_10) {
set req.backend = b192_168_100_10;
}
if (server.ip ~ a192_168_100_11) {
set req.backend = b192_168_100_11;
}
}
Thank you once again for sharing the information![]()


LinkBack URL
About LinkBacks
for sometime as I am not sure about how to record the startup logs for varnish 
