Commit 625f53b3 authored by Lasse Karstensen's avatar Lasse Karstensen

Prettier formatting of RST lists.

Remove the last few tabs that was forgotten on the last commit.
parent fd2f5191
......@@ -124,11 +124,11 @@ call certain actions in vcl_init.::
import directors; # load the directors
backend server1 {
.host = "192.168.0.10";
}
backend server2{
.host = "192.168.0.10";
}
.host = "192.168.0.10";
}
backend server2 {
.host = "192.168.0.10";
}
sub vcl_init {
new bar = directors.round_robin();
......@@ -138,7 +138,7 @@ call certain actions in vcl_init.::
sub vcl_recv {
# send all traffic to the bar director:
req.backend = bar.backend();
req.backend = bar.backend();
}
This director is a round-robin director. This means the director will
......@@ -170,14 +170,14 @@ define the backends.::
}
backend server2 {
.host = "server2.example.com";
.probe = {
.host = "server2.example.com";
.probe = {
.url = "/";
.interval = 5s;
.timeout = 1 s;
.window = 5;
.threshold = 3;
}
}
}
Whats new here is the probe. Varnish will check the health of each
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment