summaryrefslogtreecommitdiff
path: root/templates/haproxy_listen_block.erb
diff options
context:
space:
mode:
Diffstat (limited to 'templates/haproxy_listen_block.erb')
-rw-r--r--templates/haproxy_listen_block.erb11
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/haproxy_listen_block.erb b/templates/haproxy_listen_block.erb
new file mode 100644
index 0000000..66abf1f
--- /dev/null
+++ b/templates/haproxy_listen_block.erb
@@ -0,0 +1,11 @@
+
+listen <%= name %> <%= ipaddress %>:<%= Array(ports).join(",#{ipaddress}:") %>
+<% options.sort.each do |key, val| -%>
+<% if val.is_a?(Array) -%>
+<% val.each do |item| -%>
+ <%= key %> <%= item %>
+<% end -%>
+<% else -%>
+ <%= key %> <%= val %>
+<% end -%>
+<% end -%>