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

listen <%= name %> <%= listen_ip %>:<%= Array(ports).join(",#{listen_ip}:") %>
<% config_options.sort.each do |key, val| -%>
<% if val.is_a?(Array) -%>
<% val.each do |item| -%>
  <%= key %>  <%= item %>
<% end -%>
<% else -%>
  <%= key %>  <%= val %>
<% end -%>
<% end -%>