]> git.openstreetmap.org Git - chef.git/commitdiff
Switch nominatim.osm.org to letsencrypt
authorTom Hughes <tom@compton.nu>
Wed, 15 Feb 2017 22:31:34 +0000 (22:31 +0000)
committerTom Hughes <tom@compton.nu>
Wed, 15 Feb 2017 22:31:53 +0000 (22:31 +0000)
cookbooks/nominatim/recipes/default.rb
cookbooks/nominatim/templates/default/apache.erb

index 63734cdb8046d55b6b248caf8706ba8aaf162e66..b7954af92eedeb6b7fa35910843bd290835b7b21 100644 (file)
@@ -331,6 +331,17 @@ node[:nominatim][:fpm_pools].each do |name, data|
   end
 end
 
+ssl_certificate "nominatim.openstreetmap.org" do
+  domains ["nominatim.openstreetmap.org",
+           "nominatim.osm.org",
+           "nominatim.openstreetmap.com",
+           "nominatim.openstreetmap.net",
+           "nominatim.openstreetmaps.org",
+           "nominatim.openmaps.org"]
+  fallback_certificate "openstreetmap"
+  notifies :reload, "service[apache2]"
+end
+
 apache_site "nominatim.openstreetmap.org" do
   template "apache.erb"
   directory build_directory
index 1afe817e58bcaf8744b61e6fa814fa405c9225c4..b79e76dbee2ebb81fcc47ff5659aa2a5c7b9cb3a 100644 (file)
@@ -5,18 +5,21 @@
     ServerName <%= node[:fqdn] %>
     ServerAlias nominatim.openstreetmap.org
     ServerAlias nominatim.osm.org
-    ServerAlias nominatim.openstreetmap.org
+    ServerAlias nominatim.openstreetmap.com
     ServerAlias nominatim.openstreetmap.net
     ServerAlias nominatim.openstreetmaps.org
     ServerAlias nominatim.openmaps.org
     ServerAdmin webmaster@openstreetmap.org
 
 <% if port == 443 -%>
-    #
     # Enable SSL
-    #
     SSLEngine on
     SSLProxyEngine on
+    SSLCertificateFile /etc/ssl/certs/nominatim.openstreetmap.org.pem
+    SSLCertificateKeyFile /etc/ssl/private/nominatim.openstreetmap.org.key
+<% else -%>
+    # Redirect ACME challenges for certificate issuance
+    RedirectPermanent /.well-known/acme-challenge/ http://acme.openstreetmap.org/.well-known/acme-challenge/
 <% end -%>
 
     # Remove Proxy request header to mitigate https://httpoxy.org/