summaryrefslogtreecommitdiff
path: root/templates/haproxy_config_block.erb
blob: 8737dfcb74dae60a58d8e04f57e45501a04313e7 (plain)
1
2
3
4
5
6
7
8
9
10
11

listen <%= name %> <%= virtual_ip %>:<%= virtual_ip_port %>
<% haproxy_config_options.sort.each do |key, val| -%>
<% if val.is_a?(Array) -%>
<% val.each do |item| -%>
  <%= key %>  <%= item %>
<% end -%>
<% else -%>
  <%= key %>  <%= val %>
<% end -%>
<% end -%>