]> git.openstreetmap.org Git - chef.git/commitdiff
Enable SSL for stats.osm.org
authorTom Hughes <tom@compton.nu>
Mon, 13 Feb 2017 15:43:14 +0000 (15:43 +0000)
committerTom Hughes <tom@compton.nu>
Mon, 13 Feb 2017 15:43:14 +0000 (15:43 +0000)
cookbooks/stats/recipes/default.rb
cookbooks/stats/templates/default/apache.erb

index 54d394f5243f45d2533d35edf5a01ade05e8b039..3f0303d2ef4b1a7baaa92fad26b36fad2382d36a 100644 (file)
@@ -17,7 +17,7 @@
 # limitations under the License.
 #
 
 # limitations under the License.
 #
 
-include_recipe "apache"
+include_recipe "apache::ssl"
 
 package "awstats"
 package "libgeo-ipfree-perl"
 
 package "awstats"
 package "libgeo-ipfree-perl"
@@ -73,6 +73,12 @@ cookbook_file "/srv/stats.openstreetmap.org/robots.txt" do
   mode 0o644
 end
 
   mode 0o644
 end
 
+ssl_certificate "stats.openstreetmap.org" do
+  domains ["stats.openstreetmap.org", "stats.osm.org"]
+  fallback_certificate "openstreetmap"
+  notifies :reload, "service[apache2]"
+end
+
 apache_site "stats.openstreetmap.org" do
   template "apache.erb"
   directory "/srv/stats.openstreetmap.org"
 apache_site "stats.openstreetmap.org" do
   template "apache.erb"
   directory "/srv/stats.openstreetmap.org"
index d6e1470574ef628b52c8b8991830b5d10204f216..44a7c77fc37137f012706db05b97a9cb44834633 100644 (file)
@@ -1,6 +1,6 @@
 # DO NOT EDIT - This file is being maintained by Chef
 
 # DO NOT EDIT - This file is being maintained by Chef
 
-<VirtualHost *:80>
+<VirtualHost *:443>
        ServerName stats.openstreetmap.org
        ServerAlias stats.osm.org
        ServerAdmin webmaster@openstreetmap.org
        ServerName stats.openstreetmap.org
        ServerAlias stats.osm.org
        ServerAdmin webmaster@openstreetmap.org
@@ -8,11 +8,27 @@
        CustomLog /var/log/apache2/stats.openstreetmap.org-access.log combined
        ErrorLog /var/log/apache2/stats.openstreetmap.org-error.log
 
        CustomLog /var/log/apache2/stats.openstreetmap.org-access.log combined
        ErrorLog /var/log/apache2/stats.openstreetmap.org-error.log
 
+       SSLEngine on
+       SSLCertificateFile /etc/ssl/certs/stats.openstreetmap.org.pem
+       SSLCertificateKeyFile /etc/ssl/private/stats.openstreetmap.org.key
+
        DocumentRoot <%= @directory %>
        Alias /awstats-icon/ /usr/share/awstats/icon/
        ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
 </VirtualHost>
 
        DocumentRoot <%= @directory %>
        Alias /awstats-icon/ /usr/share/awstats/icon/
        ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
 </VirtualHost>
 
+<VirtualHost *:80>
+       ServerName stats.openstreetmap.org
+       ServerAlias stats.osm.org
+       ServerAdmin webmaster@openstreetmap.org
+
+       CustomLog /var/log/apache2/stats.openstreetmap.org-access.log combined
+       ErrorLog /var/log/apache2/stats.openstreetmap.org-error.log
+
+       RedirectPermanent /.well-known/acme-challenge/ http://acme.openstreetmap.org/.well-known/acme-challenge/
+       RedirectPermanent / https://stats.openstreetmap.org/
+</VirtualHost>
+
 <Directory /var/lib/awstats>
        Options None
        AllowOverride None
 <Directory /var/lib/awstats>
        Options None
        AllowOverride None