diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 12:18:05 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 12:18:05 +0000 |
commit | b46aad6df449445a9fc4aa7b32bd40005438e3f7 (patch) | |
tree | 751aa858ca01f35de800164516b298887382919d /tests/conf/test-sql.cfg | |
parent | Initial commit. (diff) | |
download | haproxy-b46aad6df449445a9fc4aa7b32bd40005438e3f7.tar.xz haproxy-b46aad6df449445a9fc4aa7b32bd40005438e3f7.zip |
Adding upstream version 2.9.5.upstream/2.9.5
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | tests/conf/test-sql.cfg | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/conf/test-sql.cfg b/tests/conf/test-sql.cfg new file mode 100644 index 0000000..16eb5ec --- /dev/null +++ b/tests/conf/test-sql.cfg @@ -0,0 +1,29 @@ +# This is a test configuration. +# It requires a mysql server running on local port 3306. + +global + maxconn 500 + +defaults + timeout connect 1000 + timeout client 5000 + timeout server 5000 + retries 1 + option redispatch + +listen stats + bind :8080 + mode http + stats enable + stats uri /stats + +listen mysql_1 + bind :3307 + mode tcp + balance roundrobin + option mysql-check user haproxy + server srv1 127.0.0.1:3306 check port 3306 inter 1000 fall 1 +# server srv2 127.0.0.2:3306 check port 3306 inter 1000 fall 1 +# server srv3 127.0.0.3:3306 check port 3306 inter 1000 fall 1 +# server srv4 127.0.0.4:3306 check port 3306 inter 1000 fall 1 + |