]> git.openstreetmap.org Git - chef.git/blob - cookbooks/apache/templates/default/ports.conf.erb
Switch the mailman web interface to use https
[chef.git] / cookbooks / apache / templates / default / ports.conf.erb
1 # DO NOT EDIT - This file is being maintained by Chef
2
3 # Listen on port 80
4 NameVirtualHost *:80
5 Listen <%= node[:apache][:listen_address] %>:80
6
7 # Listen on port 443 if mod_ssl is enabled
8 <IfModule mod_ssl.c>
9     Listen <%= node[:apache][:listen_address] %>:443
10 </IfModule>
11
12 # Listen on port 443 if mod_gnutls is enabled
13 <IfModule mod_gnutls.c>
14     Listen <%= node[:apache][:listen_address] %>:443
15 </IfModule>