Varnish VCL Reload Fails After Adding Second Backend
- by Andy
I have been running Varnish on my production server successfully for several weeks now. Now I'm trying to configure Varnish to use a second backend for certain requests. My original working VCL (/etc/varnish/default.vcl) begins like this:
backend default {
.host = "127.0.0.1";
.port = "8080";
}
...rest of VCL...
And I'm changing it to:
…