summaryrefslogtreecommitdiff
path: root/templates/default.erb
blob: 0cc8996d0d1611bb92631a6d3a0af7125736137f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# begin vhost for <%= @fqdn %>
<VirtualHost *:<%= scope.lookupvar('apache::http_port') %>>
   ServerName <%= @fqdn %>
   ServerAlias <%= @domain %>
   DocumentRoot <%= scope.lookupvar('apache::default_folder') %>
      
   # begin site config
   <Directory <%= scope.lookupvar('apache::default_folder') %>>
      Options +Indexes +Includes +FollowSymLinks +MultiViews
      AllowOverride All
   </Directory>
   # end site config
                                
</VirtualHost>
# end vhost for <%= @fqdn %>