18 lines
323 B
Plaintext
18 lines
323 B
Plaintext
vcl 4.1;
|
|
|
|
backend default {
|
|
.host = "httpd";
|
|
.port = "80";
|
|
.connect_timeout = 60s;
|
|
.first_byte_timeout = 60s;
|
|
.between_bytes_timeout = 60s;
|
|
.probe = {
|
|
.url = "/";
|
|
.interval = 5s;
|
|
.timeout = 1 s;
|
|
.window = 5;
|
|
.threshold = 3;
|
|
.initial = 1;
|
|
}
|
|
}
|