haproxy.cfg.j2 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. # Global settings
  2. #---------------------------------------------------------------------
  3. global
  4. maxconn {{ openshift_loadbalancer_global_maxconn | default(20000) }}
  5. log /dev/log local0 info
  6. {% if openshift_is_containerized | bool %}
  7. stats socket /var/lib/haproxy/run/haproxy.sock mode 600 level admin
  8. {% else %}
  9. chroot /var/lib/haproxy
  10. pidfile /var/run/haproxy.pid
  11. user haproxy
  12. group haproxy
  13. daemon
  14. # turn on stats unix socket
  15. stats socket /var/lib/haproxy/stats
  16. {% endif %}
  17. #---------------------------------------------------------------------
  18. # common defaults that all the 'listen' and 'backend' sections will
  19. # use if not designated in their block
  20. #---------------------------------------------------------------------
  21. defaults
  22. mode http
  23. log global
  24. option httplog
  25. option dontlognull
  26. # option http-server-close
  27. option forwardfor except 127.0.0.0/8
  28. option redispatch
  29. retries 3
  30. timeout http-request 10s
  31. timeout queue 1m
  32. timeout connect 10s
  33. timeout client 300s
  34. timeout server 300s
  35. timeout http-keep-alive 10s
  36. timeout check 10s
  37. maxconn {{ openshift_loadbalancer_default_maxconn | default(20000) }}
  38. listen stats :9000
  39. mode http
  40. stats enable
  41. stats uri /
  42. {% for frontend in openshift_loadbalancer_frontends %}
  43. frontend {{ frontend.name }}
  44. {% for bind in frontend.binds %}
  45. bind {{ bind }}
  46. {% endfor %}
  47. default_backend {{ frontend.default_backend }}
  48. {% if 'mode' in frontend %}
  49. mode {{ frontend.mode }}
  50. {% endif %}
  51. {% if 'options' in frontend %}
  52. {% for option in frontend.options %}
  53. option {{ option }}
  54. {% endfor %}
  55. {% endif %}
  56. {% if 'redirects' in frontend %}
  57. {% for redirect in frontend.redirects %}
  58. redirect {{ redirect }}
  59. {% endfor %}
  60. {% endif %}
  61. {% endfor %}
  62. {% for backend in openshift_loadbalancer_backends %}
  63. backend {{ backend.name }}
  64. balance {{ backend.balance }}
  65. {% if 'mode' in backend %}
  66. mode {{ backend.mode }}
  67. {% endif %}
  68. {% if 'options' in backend %}
  69. {% for option in backend.options %}
  70. option {{ option }}
  71. {% endfor %}
  72. {% endif %}
  73. {% for server in backend.servers %}
  74. server {{ server.name }} {{ server.address }} {{ server.opts }}
  75. {% endfor %}
  76. {% endfor %}