summaryrefslogtreecommitdiff
path: root/templates/default.erb
blob: 46da14a647372f79a20627960aab73efe038cbd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# begin vhost for <%= fqdn %>
<VirtualHost *:80>
   ServerName <%= fqdn %>
   ServerAlias <%= hosting_domain %>
   DocumentRoot <%= $apache_default_folder %>
      
   # begin site config
   <Directory <%= $apache_default_folder %>>
      Options Indexes Includes FollowSymLinks MultiViews
      AllowOverride All
   </Directory>
   # end site config
                                
</VirtualHost>
# end vhost for <%= fqdn %>