我的 Varnish 配置中有 2 个后端:一台动态服务器和一台静态服务器。
后端的配置如下:
backend default {
.host = "127.0.0.1";
.port = "8484";
.probe = {
.interval = 5s;
.timeout = 1s;
.window = 5;
.threshold = 3;
}
}
backend default_1 {
.host = "127.0.0.1";
.port = "8181";
.probe = {
.interval = 5s;
.timeout = 1s;
.window = 5;
.threshold = 3;
}
}
当我尝试重新启动 Varnish 服务器时,它无法重新启动。
可能是什么问题?