]> git.openstreetmap.org Git - chef.git/commitdiff
Enable named based virtual hosts for https
authorTom Hughes <tom@compton.nu>
Mon, 9 Sep 2013 11:20:49 +0000 (12:20 +0100)
committerTom Hughes <tom@compton.nu>
Mon, 9 Sep 2013 11:20:49 +0000 (12:20 +0100)
cookbooks/apache/templates/default/ports.conf.erb

index 588fcee5c9f893432bf790066d2aec26558a1b27..dbb43568f80afc27cfe64c029d964dd0b50808ff 100644 (file)
@@ -6,10 +6,12 @@ Listen <%= node[:apache][:listen_address] %>:80
 
 # Listen on port 443 if mod_ssl is enabled
 <IfModule mod_ssl.c>
+    NameVirtualHost *:443
     Listen <%= node[:apache][:listen_address] %>:443
 </IfModule>
 
 # Listen on port 443 if mod_gnutls is enabled
 <IfModule mod_gnutls.c>
+    NameVirtualHost *:443
     Listen <%= node[:apache][:listen_address] %>:443
 </IfModule>