summaryrefslogtreecommitdiff
path: root/templates/default.erb
diff options
context:
space:
mode:
Diffstat (limited to 'templates/default.erb')
-rw-r--r--templates/default.erb15
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/default.erb b/templates/default.erb
new file mode 100644
index 0000000..46da14a
--- /dev/null
+++ b/templates/default.erb
@@ -0,0 +1,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 %>