]> git.openstreetmap.org Git - chef.git/commitdiff
Enable SSL for munin using letsencrypt
authorTom Hughes <tom@compton.nu>
Sat, 11 Feb 2017 17:18:43 +0000 (17:18 +0000)
committerTom Hughes <tom@compton.nu>
Sat, 11 Feb 2017 17:18:43 +0000 (17:18 +0000)
cookbooks/munin/recipes/server.rb
cookbooks/munin/templates/default/apache.erb

index d4f8cb04703645c4f2502c684a0ecb10febee76d..5861bf5ea6e1b6fbe2d72901e67e4e58e3a7bca8 100644 (file)
@@ -17,7 +17,7 @@
 # limitations under the License.
 #
 
-include_recipe "apache"
+include_recipe "apache::ssl"
 
 package "munin"
 package "rrdcached"
@@ -90,6 +90,11 @@ directory "/srv/munin.openstreetmap.org/dumps" do
   mode 0o755
 end
 
+ssl_certificate "munin.openstreetmap.org" do
+  domains ["munin.openstreetmap.org", "munin.osm.org"]
+  notifies :reload, "service[apache2]"
+end
+
 apache_site "munin.openstreetmap.org" do
   template "apache.erb"
 end
index e59c33fb0943bd7387eabb168fd2a966c6fe3109..77a215704ca22b3a590bec549d322a907ec9d09e 100644 (file)
@@ -1,6 +1,6 @@
 # DO NOT EDIT - This file is being maintained by Chef
 
-<VirtualHost *:80>
+<VirtualHost *:443>
        ServerName munin.openstreetmap.org
        ServerAlias munin.osm.org
        ServerAdmin webmaster@openstreetmap.org
@@ -8,7 +8,11 @@
        CustomLog /var/log/apache2/munin.openstreetmap.org-access.log combined
        ErrorLog /var/log/apache2/munin.openstreetmap.org-error.log
 
-       SetEnv RRDCACHED_ADDRESS /var/run/rrdcached.sock
+       SSLEngine on
+       SSLCertificateFile /etc/ssl/certs/munin.openstreetmap.org.pem
+       SSLCertificateKeyFile /etc/ssl/private/munin.openstreetmap.org.key
+
+        SetEnv RRDCACHED_ADDRESS /var/run/rrdcached.sock
 
        DocumentRoot /srv/munin.openstreetmap.org
        Alias /static/favicon.ico /srv/munin.openstreetmap.org/favicon.ico
        RewriteRule ^(/.*\.html)?$ /munin-cgi/munin-cgi-html/$1 [PT]
 </VirtualHost>
 
+<VirtualHost *:80>
+       ServerName munin.openstreetmap.org
+       ServerAlias munin.osm.org
+       ServerAdmin webmaster@openstreetmap.org
+
+       CustomLog /var/log/apache2/munin.openstreetmap.org-access.log combined
+       ErrorLog /var/log/apache2/munin.openstreetmap.org-error.log
+
+       RedirectPermanent /.well-known/acme-challenge/ http://acme.openstreetmap.org/.well-known/acme-challenge/
+       RedirectPermanent / https://munin.openstreetmap.org/
+</VirtualHost>
+
 <Directory /srv/munin.openstreetmap.org>
        Require all granted
 </Directory>