From: Tom Hughes Date: Tue, 7 Apr 2015 09:37:21 +0000 (+0100) Subject: Enable https for planet.openstreetmap.org X-Git-Url: https://git.openstreetmap.org/chef.git/commitdiff_plain/5f2de3518b17b1fb18294649f6c238e289ca7835?ds=sidebyside Enable https for planet.openstreetmap.org --- diff --git a/cookbooks/planet/templates/default/apache.erb b/cookbooks/planet/templates/default/apache.erb index ef2834fd8..dddd5de9f 100644 --- a/cookbooks/planet/templates/default/apache.erb +++ b/cookbooks/planet/templates/default/apache.erb @@ -1,9 +1,14 @@ # DO NOT EDIT - This file is being maintained by Chef - - +<% [80, 443].each do |port| -%> + +> ServerName planet.openstreetmap.org ServerAlias planet.osm.org ServerAdmin webmaster@openstreetmap.org +<% if port == 443 -%> + + SSLEngine on +<% end -%> CustomLog /var/log/apache2/planet.openstreetmap.org-access.log combined ErrorLog /var/log/apache2/planet.openstreetmap.org-error.log @@ -46,25 +51,13 @@ RewriteCond %{REMOTE_ADDR} ^193\.1\.193\.64 [OR] RewriteCond %{REMOTE_ADDR} ^146\.169\. [OR] RewriteCond %{REMOTE_ADDR} ^129\.31\. [OR] - RewriteCond %{REMOTE_ADDR} ^193\.60\. [OR] - RewriteCond %{REMOTE_ADDR} ^193\.61\. [OR] - RewriteCond %{REMOTE_ADDR} ^193\.62\. [OR] - RewriteCond %{REMOTE_ADDR} ^193\.63\. [OR] + RewriteCond %{REMOTE_ADDR} ^193\.60\. [OR] + RewriteCond %{REMOTE_ADDR} ^193\.61\. [OR] + RewriteCond %{REMOTE_ADDR} ^193\.62\. [OR] + RewriteCond %{REMOTE_ADDR} ^193\.63\. [OR] RewriteCond %{QUERY_STRING} nomirror RewriteRule .* - [L] RewriteRule ^(/planet/planet\-latest\.osm\.bz2)$ ${latestplanet:$1} [R,L] - - - ServerName planet.openstreetmap.org - ServerAlias planet.osm.org - ServerAdmin webmaster@openstreetmap.org - - SSLEngine on - - CustomLog /var/log/apache2/planet.openstreetmap.org-access.log combined - ErrorLog /var/log/apache2/planet.openstreetmap.org-error.log - - Redirect / http://planet.openstreetmap.org/ - +<% end -%>