Mercurial > repos > other > Puppet
view modules/apache/templates/vhost/_aliases.erb @ 0:956e484adc12
Initial public release of Puppet configs
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 16 Aug 2014 19:47:38 +0000 |
parents | |
children | 37675581a273 |
line wrap: on
line source
<% if @aliases and ! @aliases.empty? -%> ## Alias declarations for resources outside the DocumentRoot <%- [@aliases].flatten.compact.each do |alias_statement| -%> <%- if alias_statement["path"] != '' -%> <%- if alias_statement["alias"] and alias_statement["alias"] != '' -%> Alias <%= alias_statement["alias"] %> "<%= alias_statement["path"] %>" <%- elsif alias_statement["aliasmatch"] and alias_statement["aliasmatch"] != '' -%> AliasMatch <%= alias_statement["aliasmatch"] %> "<%= alias_statement["path"] %>" <%- end -%> <%- end -%> <%- end -%> <% end -%>