]> git.openstreetmap.org Git - chef.git/commitdiff
Enable SSL on tile render servers
authorTom Hughes <tom@compton.nu>
Fri, 9 Feb 2018 19:04:44 +0000 (19:04 +0000)
committerTom Hughes <tom@compton.nu>
Fri, 9 Feb 2018 19:04:44 +0000 (19:04 +0000)
cookbooks/tile/recipes/default.rb
cookbooks/tile/templates/default/apache.erb
cookbooks/tilecache/attributes/default.rb

index 7befcdc20980b77fde84a9e8a3a18cd4d3829a11..74f011cc14f3453b030275f0b419ca1664b770e3 100644 (file)
@@ -38,6 +38,11 @@ apache_module "tile" do
   conf "tile.conf.erb"
 end
 
+ssl_certificate node[:fqdn] do
+  domains [node[:fqdn], "render.openstreetmap.org"]
+  notifies :reload, "service[apache2]"
+end
+
 tilecaches = search(:node, "roles:tilecache").sort_by { |n| n[:hostname] }
 
 apache_site "default" do
index f6364cc9858e377ace092dde7d0df5b8f7c52a8b..6588ab0b1f981672bde0bcf8350eb549dbd73a60 100644 (file)
@@ -1,13 +1,22 @@
 # DO NOT EDIT - This file is being maintained by Chef
 
-<VirtualHost *:80>
+<% [80, 443].each do |port| -%>
+<VirtualHost *:<%= port %>>
   # Basic server configuration
   ServerName <%= node[:fqdn] %>
-  ServerAlias tile.openstreetmap.org
   ServerAlias render.openstreetmap.org
   ServerAlias *.render.openstreetmap.org
-  ServerAlias parent.tile.openstreetmap.org
   ServerAdmin webmaster@openstreetmap.org
+<% if port == 443 -%>
+
+  #
+  # Enable SSL
+  #
+  SSLEngine on
+  SSLProxyEngine on
+  SSLCertificateFile /etc/ssl/certs/<%= node[:fqdn] %>.pem
+  SSLCertificateKeyFile /etc/ssl/private/<%= node[:fqdn] %>.key
+<% end -%>
 
   # Configure location of static files and CGI scripts
   DocumentRoot /srv/tile.openstreetmap.org/html
@@ -51,6 +60,7 @@
   RedirectPermanent /.well-known/acme-challenge/ http://acme.openstreetmap.org/.well-known/acme-challenge/
 </VirtualHost>
 
+<% end -%>
 <Directory /srv/tile.openstreetmap.org/html>
   Options None
   AllowOverride None
index b5023c3a71385a6bbedfdac37cc4c6c7cd5285c4..6ef75527e22e382aa352792a50bc47762b956a89 100644 (file)
@@ -1,5 +1,5 @@
 
-default[:tilecache][:tile_parent] = "parent.tile.openstreetmap.org"
+default[:tilecache][:tile_parent] = "render.openstreetmap.org"
 default[:tilecache][:tile_siblings] = []
 
 # Per IP bucket refill rate