haproxy/tests/test-redir.cfg
Willy Tarreau 21d2af3e9f Revert "[BUILD] backend.c and checks.c did not build without tproxy !"
This reverts commit 3c3c0122f8.
This commit was buggy as it also removed previous tproxy changes !
2008-02-14 20:25:24 +01:00

36 lines
1.2 KiB
INI

# This is a test configuration.
# It makes use of a farm built from 4 servers, 3 of which are remote and
# referenced only via an HTTP redirect (302), and the 4th one is normal.
# HTTP requests different from GET/HEAD should reach the servers directly
# while GET/HEAD should get redirected for the 3 first ones.
global
#log /dev/log local0
maxconn 1000
stats socket /tmp/sock1 mode 600
stats timeout 3000
stats maxconn 2000
listen sample1
#log global
#option httplog
mode http
retries 1
option redispatch
contimeout 1000
clitimeout 5000
srvtimeout 5000
maxconn 40000
bind :8080
#balance source
balance roundrobin
option allbackups
server rdr1 127.0.0.1:80 redir http://static1:80 weight 10 check inter 1000 fall 4
server rdr2 127.0.0.2:80 redir http://static2:80 weight 20 check inter 1000 fall 4
server rdr3 127.0.0.3:80 redir http://static3:80 weight 30 check inter 1000 fall 4
server dir4 127.0.0.4:80 redir weight 30 check inter 1000 fall 4
option httpclose
stats uri /stats
stats refresh 5