~ionutbalutoiu/charms/trusty/neutron-api/next

« back to all changes in this revision

Viewing changes to hooks/charmhelpers/contrib/openstack/templates/haproxy.cfg

  • Committer: James Page
  • Date: 2014-10-01 21:05:24 UTC
  • mfrom: (39.3.25 trunk)
  • Revision ID: james.page@ubuntu.com-20141001210524-cm6ddbhkd8jy6gg2
[xianghui,dosaboy,r=james-page,t=gema] Add IPv6 support using prefer-ipv6 flag

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
global
2
 
    log 127.0.0.1 local0
3
 
    log 127.0.0.1 local1 notice
 
2
    log {{ local_host }} local0
 
3
    log {{ local_host }} local1 notice
4
4
    maxconn 20000
5
5
    user haproxy
6
6
    group haproxy
14
14
    retries 3
15
15
    timeout queue 1000
16
16
    timeout connect 1000
 
17
{% if haproxy_client_timeout -%}
 
18
    timeout client {{ haproxy_client_timeout }}
 
19
{% else -%}
17
20
    timeout client 30000
 
21
{% endif -%}
 
22
 
 
23
{% if haproxy_server_timeout -%}
 
24
    timeout server {{ haproxy_server_timeout }}
 
25
{% else -%}
18
26
    timeout server 30000
 
27
{% endif -%}
19
28
 
20
 
listen stats :8888
 
29
listen stats {{ stat_port }}
21
30
    mode http
22
31
    stats enable
23
32
    stats hide-version