File: test-sql.cfg

package info (click to toggle)
haproxy 3.2.10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 23,924 kB
  • sloc: ansic: 267,927; sh: 3,466; xml: 1,756; python: 1,345; makefile: 1,155; perl: 168; cpp: 21
file content (29 lines) | stat: -rw-r--r-- 746 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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