]> git.openstreetmap.org Git - chef.git/commitdiff
Make planet redirect to https
authorTom Hughes <tom@compton.nu>
Thu, 4 Jan 2018 19:21:15 +0000 (19:21 +0000)
committerTom Hughes <tom@compton.nu>
Thu, 4 Jan 2018 19:21:15 +0000 (19:21 +0000)
cookbooks/planet/templates/default/apache.erb

index 8790c80328d18d463299542c5545f61ac127dadb..dd2c824e1e466b10c07118e3128ff330496ffb11 100644 (file)
@@ -1,18 +1,13 @@
 # DO NOT EDIT - This file is being maintained by Chef
-<% [80, 443].each do |port| -%>
    
-<VirtualHost *:<%= port %>>
+<VirtualHost *:443>
         ServerName planet.openstreetmap.org
         ServerAlias planet.osm.org
         ServerAdmin webmaster@openstreetmap.org
 
-<% if port == 443 -%>
         SSLEngine on
         SSLCertificateFile /etc/ssl/certs/planet.openstreetmap.org.pem
         SSLCertificateKeyFile /etc/ssl/private/planet.openstreetmap.org.key
-<% else -%>
-        RedirectPermanent /.well-known/acme-challenge/ http://acme.openstreetmap.org/.well-known/acme-challenge/
-<% end -%>
 
         CustomLog /var/log/apache2/planet.openstreetmap.org-access.log combined
         ErrorLog /var/log/apache2/planet.openstreetmap.org-error.log
 
         RewriteRule     ^(/planet/planet\-latest\.osm\.bz2)$    ${latestplanet:$1}      [R,L]
 </VirtualHost>
-<% end -%>
+
+<VirtualHost *:80>
+       ServerName planet.openstreetmap.org
+       ServerAlias planet.osm.org
+       ServerAdmin webmaster@openstreetmap.org
+
+       CustomLog /var/log/apache2/planet.openstreetmap.org-access.log combined
+       ErrorLog /var/log/apache2/planet.openstreetmap.org-error.log
+
+       RedirectPermanent /.well-known/acme-challenge/ http://acme.openstreetmap.org/.well-known/acme-challenge/
+       RedirectPermanent / https://planet.openstreetmap.org/
+</VirtualHost>