formula-haproxy/haproxy/templates/haproxy.jinja

163 lines
5.3 KiB
Plaintext
Raw Normal View History

# HAProxy configuration
#
# **** DO NOT EDIT THIS FILE ****
#
# This file is managed by Salt.
# Any changes will be overwritten.
#---------------------------------------------------------------------
# Global settings
#---------------------------------------------------------------------
global
log /dev/log local0
log /dev/log local1 notice
user {{ salt['pillar.get']('haproxy:global:user', 'haproxy') }}
group {{ salt['pillar.get']('haproxy:global:group', 'haproxy') }}
{%- if salt['pillar.get']('haproxy:global:chroot:enable', 'no') == True %}
chroot {{ salt['pillar.get']('haproxy:global:chroot:path', '/tmp') }}
{%- endif -%}
{% if salt['pillar.get']('haproxy:global:daemon', 'no') == True %}
daemon
{% endif %}
{%- if salt['pillar.get']('haproxy:global:stats:enable', 'no') == True %}
2015-05-23 13:43:21 -04:00
# Stats support is currently limited to socket mode
stats socket {{ salt['pillar.get']('haproxy:global:stats:socketpath', '/tmp/ha_stats.sock') }}
2015-05-23 13:43:21 -04:00
{% endif %}
2015-06-08 09:16:31 -04:00
{%- for id, userlist in salt['pillar.get']('haproxy:userlists', {}).iteritems() %}
userlist {{ id }}
2015-06-08 10:14:28 -04:00
{%- for id, entry in userlist.iteritems() %}
{%- if id == "groups" %}
{%- for group in entry.iteritems() %}
group {{ group[0] }} {{ group[1] }}
{%- endfor %}
{% endif %}
{%- if id == "users" %}
{%- for user in entry.iteritems() %}
user {{ user[0] }} {{ user[1] }}
{%- endfor %}
{% endif %}
2015-06-08 09:16:31 -04:00
{%- endfor %}
{% endfor %}
2015-06-08 10:14:28 -04:00
#---------------------------------------------------------------------
# common defaults that all the 'listen' and 'backend' sections will
# use if not designated in their block
#---------------------------------------------------------------------
defaults
log {{ salt['pillar.get']('haproxy:defaults:log') }}
mode {{ salt['pillar.get']('haproxy:defaults:mode') }}
retries {{ salt['pillar.get']('haproxy:defaults:retries') }}
2015-07-30 18:14:36 -04:00
# options
{%- if 'options' in salt['pillar.get']('haproxy:defaults', {}) %}
2015-05-23 13:43:21 -04:00
{%- for option in salt['pillar.get']('haproxy:defaults:options') %}
option {{ option }}
{%- endfor %}
{% endif %}
2015-07-30 18:14:36 -04:00
# timeouts
{%- if 'timeouts' in salt['pillar.get']('haproxy:defaults', {}) %}
2015-05-23 13:43:21 -04:00
{%- for timeout in salt['pillar.get']('haproxy:defaults:timeouts') %}
timeout {{ timeout }}
{%- endfor %}
{% endif %}
2015-07-30 18:14:36 -04:00
# errorfiles
{%- if 'errorfiles' in salt['pillar.get']('haproxy:defaults', {}) %}
2015-05-23 13:43:21 -04:00
{%- for errorfile in salt['pillar.get']('haproxy:defaults:errorfiles').iteritems() %}
errorfile {{ errorfile[0] }} {{ errorfile[1] }}
{%- endfor %}
{% endif %}
#---------------------------------------------------------------------
# frontend instances
#---------------------------------------------------------------------
{%- if 'frontends' in salt['pillar.get']('haproxy', {}) %}
2015-05-23 13:43:21 -04:00
{%- for frontend in salt['pillar.get']('haproxy:frontends', {}).iteritems() %}
frontend {{ frontend[1].name }}
bind {{ frontend[1].bind }}
2015-07-30 18:14:36 -04:00
# frontend redirects
2015-05-23 13:43:21 -04:00
{%- if 'redirects' in frontend[1] %}
{%- for front_redirect in frontend[1].redirects %}
2015-05-17 12:26:08 -04:00
redirect {{ front_redirect }}
2015-05-23 13:43:21 -04:00
{% endfor %}
{%- endif %}
2015-07-30 18:14:36 -04:00
# frontend acls
2015-05-23 13:43:21 -04:00
{%- if 'acls' in frontend[1] %}
{%- for acl in frontend[1].acls %}
acl {{ acl }}
2015-05-23 13:43:21 -04:00
{%- endfor %}
{%- endif %}
2015-07-30 18:14:36 -04:00
# frontend http-requests
{%- if 'http_requests' in frontend[1] %}
{%- for http_request in frontend[1].http_requests %}
http-request {{ http_request }}
{% endfor %}
{%- endif %}
# frontend reqadds
2015-05-23 13:43:21 -04:00
{%- if 'reqadd' in frontend[1] %}
{%- for reqadd in frontend[1].reqadd %}
reqadd {{ reqadd }}
2015-05-23 13:43:21 -04:00
{%- endfor %}
{%- endif %}
2015-07-30 18:14:36 -04:00
# backend targets
default_backend {{ frontend[1].default_backend }}
2015-05-23 13:43:21 -04:00
{%-if 'use_backends' in frontend[1] -%}
{%- for use_backend in frontend[1].use_backends %}
use_backend {{ use_backend }}
2015-05-23 13:43:21 -04:00
{% endfor %}
{%- endif %}
{% endfor %}
{%- endif %}
#---------------------------------------------------------------------
# backend instances
#---------------------------------------------------------------------
{%- if 'backends' in salt['pillar.get']('haproxy', {}) %}
2015-05-23 13:43:21 -04:00
{%- for backend in salt['pillar.get']('haproxy:backends', {}).iteritems() %} # Backend loop start
backend {{ backend[1].name }}
2015-05-23 13:43:21 -04:00
{%- if 'redirects' in backend[1] %}
{%- for redirect in backend[1].redirects %} # Redirect loop start
redirect {{ redirect }}{% endfor %}
2015-07-30 18:14:36 -04:00
{%- endif %}
{%- if 'http_requests' in backend[1] %}
{%- for http_request in backend[1].http_requests %}
http-request {{ http_request }}
{% endfor %}
{%- endif %}
{%- if 'acls' in backend[1] %}
{%- for acl in backend[1].acls %}
acl {{ acl }}
{%- endfor %}
2015-05-23 13:43:21 -04:00
{%- endif %}
balance {{ backend[1].balance }}
2015-05-23 13:43:21 -04:00
{%- if 'options' in backend[1] %}
{%- for option in backend[1].options %}
option {{ option }}
{%- endfor %}
2015-05-23 13:43:21 -04:00
{%- endif %}
{%- if 'cookie' in backend[1] %}
cookie {{ backend[1].cookie }}
2015-05-23 13:43:21 -04:00
{%- endif %}
{%- if 'stats' in backend[1] %}
{%- for option, value in backend[1].stats.iteritems() %}
2015-05-23 13:43:21 -04:00
{%- if option == 'enable' and value %}
stats enable
2015-05-23 13:43:21 -04:00
{%- else %}
stats {{ option }} {{ value }}
2015-05-23 13:43:21 -04:00
{%- endif %}
{%- endfor %}
2015-05-23 13:43:21 -04:00
{%- endif %}
{%- if 'servers' in backend[1] %}
{%- for server in backend[1].servers.iteritems() %}
server {{ server[1].name }} {{ server[1].host }}:{{ server[1].port }} {{ server[1].check }}{% endfor %}
2015-05-23 13:43:21 -04:00
{% endif %}
{% endfor %} # Backend loop end
{% endif %}