diff options
| author | kwadronaut <kwadronaut@leap.se> | 2013-09-17 20:09:10 +0200 | 
|---|---|---|
| committer | kwadronaut <kwadronaut@leap.se> | 2013-09-22 00:08:05 +0200 | 
| commit | a95e00f78e07d515b49de563ca5fbcd83be0d015 (patch) | |
| tree | 809319f17cf2c3505668d92f2813787791412bf2 /puppet/modules | |
| parent | 70284fd0e786ad838fbbd40c816f6c0d01cc1629 (diff) | |
adding fqdn as default servername and moving service.domain to ServerAlias (fixing #3384)
node name and dns fqdn could be different
Also note that on local deploys that warning from #3384 will continue to exist (because of dns)
Diffstat (limited to 'puppet/modules')
3 files changed, 7 insertions, 2 deletions
| diff --git a/puppet/modules/site_apache/templates/vhosts.d/api.conf.erb b/puppet/modules/site_apache/templates/vhosts.d/api.conf.erb index bc5ff156..2cac297e 100644 --- a/puppet/modules/site_apache/templates/vhosts.d/api.conf.erb +++ b/puppet/modules/site_apache/templates/vhosts.d/api.conf.erb @@ -7,7 +7,8 @@  Listen 0.0.0.0:<%= api_port %>  <VirtualHost *:<%= api_port -%>> -  ServerName <%= api_domain %> +  ServerName <%= domain_name %> +  ServerAlias <%= api_domain %>    SSLEngine on    SSLProtocol -all +SSLv3 +TLSv1 diff --git a/puppet/modules/site_apache/templates/vhosts.d/leap_webapp.conf.erb b/puppet/modules/site_apache/templates/vhosts.d/leap_webapp.conf.erb index 5e3960c2..3b376839 100644 --- a/puppet/modules/site_apache/templates/vhosts.d/leap_webapp.conf.erb +++ b/puppet/modules/site_apache/templates/vhosts.d/leap_webapp.conf.erb @@ -6,7 +6,8 @@  </VirtualHost>  <VirtualHost *:443> -  ServerName <%= domain %> +  ServerName <%= domain_name %> +  ServerAlias <%= domain %>    ServerAlias www.<%= domain %>    SSLEngine on diff --git a/puppet/modules/site_webapp/manifests/apache.pp b/puppet/modules/site_webapp/manifests/apache.pp index 4331afe4..3d28ec83 100644 --- a/puppet/modules/site_webapp/manifests/apache.pp +++ b/puppet/modules/site_webapp/manifests/apache.pp @@ -4,6 +4,9 @@ class site_webapp::apache {    $api_domain       = $web_api['domain']    $api_port         = $web_api['port'] +  $web_domain       = hiera('domain') +  $domain_name      = $web_domain['name'] +    $x509             = hiera('x509')    $commercial_key   = $x509['commercial_key']    $commercial_cert  = $x509['commercial_cert'] | 
