~ubuntu-branches/ubuntu/precise/haproxy/precise-proposed

« back to all changes in this revision

Viewing changes to tests/test-url-hash.cfg

  • Committer: Bazaar Package Importer
  • Author(s): Christo Buschek
  • Date: 2011-03-11 12:41:59 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20110311124159-9foyp4juf1ilqipo
Tags: 1.4.13-1
* New maintainer upload (Closes: #615246)
* New upstream release
* Standards-version goes 3.9.1 (no change)
* Added patch bashism (Closes: #581109)
* Added a README.source file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
 
9
9
listen  vip1
10
10
        log             global
 
11
        option          httplog
11
12
        bind            :8000
12
13
        mode            http
13
14
        maxconn         100
21
22
        # control activity this way
22
23
        stats           uri /stat
23
24
 
 
25
listen  vip2
 
26
        log             global
 
27
        option          httplog
 
28
        bind            :8001
 
29
        mode            http
 
30
        maxconn         100
 
31
        clitimeout      5000
 
32
        contimeout      5000
 
33
        srvtimeout      5000
 
34
        balance         url_param foo check_post
 
35
        server          srv1 127.0.0.1:80
 
36
        server          srv2 127.0.0.1:80
 
37
 
 
38
        # control activity this way
 
39
        stats           uri /stat
 
40