123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- global
- log 127.0.0.1 local2
- chroot /var/lib/haproxy
- pidfile /var/run/haproxy.pid
- user haproxy
- group haproxy
- maxconn 5000
- nbproc 2
- cpu-map 1 0
- cpu-map 2 1
- daemon
- tune.ssl.default-dh-param 2048
- stats socket /var/lib/haproxy/stats mode 660 level admin
- listen stats
- bind :9000
- mode http
- stats enable
- stats hide-version
- stats show-node
- stats realm Haproxy\ Statistics
- stats uri /haproxy_stats
- stats auth admin:admin # Authentication credentials
- timeout connect 86400
- timeout client 86400
- timeout server 86400
- defaults
- mode tcp
- log global
- option tcplog
- option dontlognull
- option http-server-close
- option forwardfor except 127.0.0.0/8
- option redispatch
- retries 3
- timeout http-request 10
- timeout queue 1m
- timeout connect 1m
- timeout client 1m
- timeout server 1m
- timeout http-keep-alive 10
- timeout check 10
- frontend ft_http
- bind *:80
- mode http
- timeout client 1m
- default_backend bk_http
- frontend ft_https
- bind *:443
- mode tcp
- timeout client 1m
- http-request set-header X-Forwarded-Proto: https
- default_backend bk_https
- #frontend ft_mix
- # mode http
- # bind *:80
- # bind *:443 ssl crt {{ ssl_crt_path }}/{{ ssl_name }}.pem
- # http-request redirect scheme https code 301 if !{ ssl_fc }
- # http-response set-header Strict-Transport-Security max-age=63072000
- # default_backend bk_mix
- #
- #backend bk_mix
- # mode http
- # balance {{ backend_balance_method }}
- # default-server inter 1s
- # timeout connect 10s
- # timeout server 1m
- # {% if haproxy_backend_servers != '' %}
- # {% for item in haproxy_backend_servers %}
- # server {{ item }} {{ hostvars[item]['ansible_host'] }}:80 maxconn 250 check id {{ loop.index }}
- # {% endfor %}
- # {% endif %}
- backend bk_http
- mode http
- balance {{ backend_balance_method }}
- default-server inter 1s
- timeout connect 10s
- timeout server 1m
- {% if haproxy_backend_servers != '' %}
- {% for item in haproxy_backend_servers %}
- server {{ item }} {{ hostvars[item]['ansible_host'] }}:80 maxconn 250 check id {{ loop.index }}
- {% endfor %}
- {% endif %}
- backend bk_https
- mode tcp
- balance {{ backend_balance_method }}
- option ssl-hello-chk
- default-server inter 1s
- timeout connect 10s
- timeout server 1m
- {% if haproxy_backend_servers != '' %}
- {% for item in haproxy_backend_servers %}
- server {{ item }} {{ hostvars[item]['ansible_host'] }}:443 maxconn 250 check id {{ loop.index }}
- {% endfor %}
- {% endif %}
|