diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-06-26 17:23:37 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-06-26 17:23:37 +0100 |
commit | ade05cb9826f06e0696ee1e11190166106a29b9d (patch) | |
tree | 8630ffd664d6b833949a3cad77642dd11c93ffed | |
parent | Don't use nagios for group, use haproxy (diff) | |
download | config-ade05cb9826f06e0696ee1e11190166106a29b9d.tar.bz2 config-ade05cb9826f06e0696ee1e11190166106a29b9d.tar.xz config-ade05cb9826f06e0696ee1e11190166106a29b9d.zip |
Simplify timeout specs
-rw-r--r-- | etc/haproxy.cfg | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/haproxy.cfg b/etc/haproxy.cfg index 88ddec1..16ced04 100644 --- a/etc/haproxy.cfg +++ b/etc/haproxy.cfg @@ -5,9 +5,9 @@ global stats socket /run/haproxy.stats mode 660 group haproxy defaults - timeout connect 5000ms - timeout client 50000ms - timeout server 50000ms + timeout connect 5s + timeout client 50s + timeout server 50s balance roundrobin option redispatch default-server on-error fail-check inter 5m fastinter 1m downinter 10s |