summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2009-11-08 11:51:34 -0200
committerSilvio Rhatto <rhatto@riseup.net>2009-11-08 11:51:34 -0200
commitb534b72a2fbee24acce97e4ef0d365abd89d1c5c (patch)
treef038f6a2327905d30451f61ab80bdfc31afb1383 /templates
parent1f05de76f5ef8350f75bf7b6b27c1ef5a490684e (diff)
downloadpuppet-apache-b534b72a2fbee24acce97e4ef0d365abd89d1c5c.tar.gz
puppet-apache-b534b72a2fbee24acce97e4ef0d365abd89d1c5c.tar.bz2
Website template fix
Diffstat (limited to 'templates')
-rw-r--r--templates/website.erb11
1 files changed, 0 insertions, 11 deletions
diff --git a/templates/website.erb b/templates/website.erb
deleted file mode 100644
index 0c9d075..0000000
--- a/templates/website.erb
+++ /dev/null
@@ -1,11 +0,0 @@
-# begin vhost for <%= title %>
-<VirtualHost *:80>
- ServerName <%= title %>.<%= domain %>
-<% if server_alias != false %> ServerAlias <%= server_alias %><% end %>
- DocumentRoot <%= docroot %>
-<% if redirect != false %> RedirectMatch ^/$ <%= protocol %>://<%= title %>.<%= domain %>/<%= redirect %><% end %>
-<% if use != false %>
-<% use.each do |instance| -%> Use <%= instance %><% end -%>
-<% end -%>
-</VirtualHost>
-# end vhost for <%= title %>