24 lines
456 B
INI
24 lines
456 B
INI
# 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
|
|
bind :8000
|
|
mode http
|
|
maxconn 100
|
|
timeout client 5000
|
|
timeout connect 5000
|
|
timeout server 5000
|
|
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
|
|
|