2007-11-01 21:48:15 +00:00
|
|
|
# This is a test configuration.
|
|
|
|
# It exercises the "url_param" balance algorithm. It looks for
|
|
|
|
# an URL parameter named "foo".
|
|
|
|
|
|
|
|
global
|
|
|
|
maxconn 100
|
|
|
|
log 127.0.0.1 local0
|
|
|
|
|
|
|
|
listen vip1
|
|
|
|
log global
|
2011-03-01 19:43:27 +00:00
|
|
|
option httplog
|
2007-11-01 21:48:15 +00:00
|
|
|
bind :8000
|
|
|
|
mode http
|
|
|
|
maxconn 100
|
2021-04-02 08:49:34 +00:00
|
|
|
timeout client 5000
|
|
|
|
timeout connect 5000
|
|
|
|
timeout server 5000
|
2007-11-01 21:48:15 +00:00
|
|
|
balance url_param foo
|
|
|
|
server srv1 127.0.0.1:80
|
|
|
|
server srv2 127.0.0.1:80
|
|
|
|
|
|
|
|
# control activity this way
|
|
|
|
stats uri /stat
|
|
|
|
|
2011-03-01 19:43:27 +00:00
|
|
|
listen vip2
|
|
|
|
log global
|
|
|
|
option httplog
|
|
|
|
bind :8001
|
|
|
|
mode http
|
|
|
|
maxconn 100
|
2021-04-02 08:49:34 +00:00
|
|
|
timeout client 5000
|
|
|
|
timeout connect 5000
|
|
|
|
timeout server 5000
|
2011-03-01 19:43:27 +00:00
|
|
|
balance url_param foo check_post
|
|
|
|
server srv1 127.0.0.1:80
|
|
|
|
server srv2 127.0.0.1:80
|
|
|
|
|
|
|
|
# control activity this way
|
|
|
|
stats uri /stat
|
|
|
|
|