haproxy.cfg.j2 2.2 KB

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