summaryrefslogtreecommitdiff
path: root/puppet/modules/apache/templates/vhosts/partials/header_default.erb
blob: cd4d04caa912ff1c5fa6ab3a67b4307ae9aa97a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  Include include.d/defaults.inc
<% if vhost_part == :ssl -%>
  Include include.d/ssl_defaults.inc
<%= scope.function_templatewlv(['apache/vhosts/partials/ssl.erb',
                                {'configuration' => configuration}]) %>
<% end -%>
  ServerName <%= @servername %>
<% unless @serveralias.empty? || (@serveralias == 'absent') -%>
  ServerAlias <%= Array(@serveralias).sort.join(' ') %>
<% end -%>
<% unless @server_admin.empty? || (@server_admin == 'absent') -%>
  ServerAdmin <%= @server_admin %>
<% end -%>
<% unless @documentroot == 'really_absent' -%>
  DocumentRoot <%= @documentroot %>/
<% end -%>
<% if @default_charset != 'absent' -%>
  AddDefaultCharset <%= @default_charset %>
<% end -%>
<% if @passing_extension != 'absent' -%>
  DirectoryIndex index.htm index.html index.<%= @passing_extension %>
<% end -%>