diff options
author | guido <guido@bruo.org> | 2015-03-30 16:55:27 -0300 |
---|---|---|
committer | guido <guido@bruo.org> | 2015-03-30 16:55:27 -0300 |
commit | 252bb2121c87a2c650551fc306f7ee41c17e8d9f (patch) | |
tree | a97309726b555a70d4c7c4c889a8dc6c024b8617 | |
parent | 5398a55d0b7b60a321b08454885134e3297311b3 (diff) |
Adds apache support for webapp.domain if defined on :80, completes fix for #6632
-rw-r--r-- | puppet/modules/site_apache/templates/vhosts.d/common.conf.erb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/puppet/modules/site_apache/templates/vhosts.d/common.conf.erb b/puppet/modules/site_apache/templates/vhosts.d/common.conf.erb index 87c40005..43bd1076 100644 --- a/puppet/modules/site_apache/templates/vhosts.d/common.conf.erb +++ b/puppet/modules/site_apache/templates/vhosts.d/common.conf.erb @@ -1,5 +1,7 @@ <VirtualHost *:80> - ServerName <%= domain %> + ServerName <%= webapp_domain %> + ServerAlias <%= domain_name %> + ServerAlias <%= domain %> ServerAlias www.<%= domain %> RewriteEngine On RewriteRule ^.*$ https://<%= domain -%>%{REQUEST_URI} [R=permanent,L] @@ -7,7 +9,6 @@ </VirtualHost> <VirtualHost *:443> - ServerName <%= webapp_domain %> ServerAlias <%= domain_name %> ServerAlias <%= domain %> |