]> git.openstreetmap.org Git - chef.git/commitdiff
Enable SSL for irc.osm.org
authorTom Hughes <tom@compton.nu>
Sun, 12 Feb 2017 10:39:45 +0000 (10:39 +0000)
committerTom Hughes <tom@compton.nu>
Sun, 12 Feb 2017 10:39:45 +0000 (10:39 +0000)
cookbooks/cgiirc/recipes/default.rb
cookbooks/cgiirc/templates/default/apache.erb

index 5f6c0eced3cce6327745a0b85c3938a1ff3c9215..173eebfdd5f404175e3a5204771a1c69600cfa62 100644 (file)
@@ -17,7 +17,7 @@
 # limitations under the License.
 #
 
-include_recipe "apache"
+include_recipe "apache::ssl"
 
 blocks = data_bag_item("cgiirc", "blocks")
 
@@ -38,6 +38,12 @@ template "/etc/cgiirc/ipaccess" do
   variables :blocks => blocks["addresses"]
 end
 
+ssl_certificate "irc.openstreetmap.org" do
+  domains "irc.openstreetmap.org"
+  fallback_certificate "openstreetmap"
+  notifies :reload, "service[apache2]"
+end
+
 apache_site "irc.openstreetmap.org" do
   template "apache.erb"
 end
index 025892c740af6e08e66489b166d48857efa802ec..780e54784d79cf71d6576e1f057112b7c152d7f4 100644 (file)
@@ -1,9 +1,13 @@
 # DO NOT EDIT - This file is being maintained by Chef
 
-<VirtualHost *:80>
+<VirtualHost *:443>
        ServerName <%= @name %>
        ServerAdmin webmaster@openstreetmap.org
 
+       SSLEngine on
+       SSLCertificateFile /etc/ssl/certs/<%= @name %>.pem
+       SSLCertificateKeyFile /etc/ssl/private/<%= @name %>.key
+
        CustomLog /var/log/apache2/<%= @name %>-access.log combined
        ErrorLog /var/log/apache2/<%= @name %>-error.log
 
                SetEnv no-gzip
        </IfModule>
 </VirtualHost>
+
+<VirtualHost *:80>
+       ServerName <%= @name %>
+       ServerAdmin webmaster@openstreetmap.org
+
+       CustomLog /var/log/apache2/<%= @name %>-access.log combined
+       ErrorLog /var/log/apache2/<%= @name %>-error.log
+
+       RedirectPermanent /.well-known/acme-challenge/ http://acme.openstreetmap.org/.well-known/acme-challenge/
+       RedirectPermanent / https://<%= @name %>/
+</VirtualHost>