summaryrefslogtreecommitdiff
path: root/templates/site.erb
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2010-01-07 19:17:31 -0200
committerSilvio Rhatto <rhatto@riseup.net>2010-01-07 19:17:31 -0200
commitb936755f402e7be72d00d5ccb618c222fbea23fc (patch)
treeafdc6ca732f87ae4ce1f37d7c3fb5ce6ffef18ba /templates/site.erb
parent5ccb78707ac02dd2fa44be5822d712d941c21e65 (diff)
downloadpuppet-apache-b936755f402e7be72d00d5ccb618c222fbea23fc.tar.gz
puppet-apache-b936755f402e7be72d00d5ccb618c222fbea23fc.tar.bz2
Adding $apache_use_domain
Diffstat (limited to 'templates/site.erb')
-rw-r--r--templates/site.erb4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/site.erb b/templates/site.erb
index 1d050d6..f75c81a 100644
--- a/templates/site.erb
+++ b/templates/site.erb
@@ -1,9 +1,9 @@
# begin vhost for <%= title %>
<VirtualHost *:80>
- ServerName <%= title %>.<%= domain %>
+ ServerName <%= title %>.<%= use_domain %>
<% if server_alias != false %> ServerAlias <%= server_alias %><% end %>
DocumentRoot <%= docroot %>
-<% if redirect_match != false %> RedirectMatch ^/$ <%= protocol %>://<%= title %>.<%= domain %>/<%= redirect_match %><% end %>
+<% if redirect_match != false %> RedirectMatch ^/$ <%= protocol %>://<%= title %>.<%= use_domain %>/<%= redirect_match %><% end %>
<% if redirect != false %> Redirect <%= redirect %><% end %>
<% if use != false %><% use.each do |instance| -%>
Use <%= instance %>