diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2009-11-05 16:05:09 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2009-11-05 16:05:09 -0200 |
commit | 6f720b97aa1ada7011a6883686d495c229c5cb08 (patch) | |
tree | faf8676499d8a78536e9e953f44f69b82efdb65a /templates | |
parent | 91fe806a05f6add611459c0be755cfcf50ea1d90 (diff) | |
download | puppet-apache-6f720b97aa1ada7011a6883686d495c229c5cb08.tar.gz puppet-apache-6f720b97aa1ada7011a6883686d495c229c5cb08.tar.bz2 |
Using server_alias instead of alias
Diffstat (limited to 'templates')
-rw-r--r-- | templates/website.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/website.erb b/templates/website.erb index 156b4b1..ac41b9b 100644 --- a/templates/website.erb +++ b/templates/website.erb @@ -1,8 +1,8 @@ # begin vhost for <%= title %> <VirtualHost *:80> ServerName <%= title %>.<%= domain %> -<% if alias != false %> - ServerAlias <%= alias %> +<% if server_alias != false %> + ServerAlias <%= server_alias %> <% end %> DocumentRoot <%= docroot %> <% if redirect != false %> |