diff options
author | guido <guido@dis.tur.bio> | 2015-10-19 15:07:30 -0300 |
---|---|---|
committer | guido <guido@dis.tur.bio> | 2015-10-19 15:07:30 -0300 |
commit | 9b18f7880aad97320cd5d118c31f04a0afc7c542 (patch) | |
tree | b98c46b28396c469d60232b54050c411f7f20c07 /puppet/modules | |
parent | 2c8de729a2a4213b8cb312bcb481695ae44f9a62 (diff) |
Redirect to webapp_domain instead of domain
This is needed for webapp when running on a subdomain.
Diffstat (limited to 'puppet/modules')
-rw-r--r-- | puppet/modules/site_apache/templates/vhosts.d/common.conf.erb | 2 |
1 files changed, 1 insertions, 1 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 ee5cd707..7f9fd5ab 100644 --- a/puppet/modules/site_apache/templates/vhosts.d/common.conf.erb +++ b/puppet/modules/site_apache/templates/vhosts.d/common.conf.erb @@ -4,7 +4,7 @@ ServerAlias <%= domain %> ServerAlias www.<%= domain %> RewriteEngine On - RewriteRule ^.*$ https://<%= domain -%>%{REQUEST_URI} [R=permanent,L] + RewriteRule ^.*$ https://<%= webapp_domain -%>%{REQUEST_URI} [R=permanent,L] CustomLog ${APACHE_LOG_DIR}/other_vhosts_access.log common </VirtualHost> |