]> git.openstreetmap.org Git - chef.git/commitdiff
Revert "Block requests for tiles unless they come from a CDN node"
authorTom Hughes <tom@compton.nu>
Wed, 3 Aug 2022 09:56:30 +0000 (10:56 +0100)
committerTom Hughes <tom@compton.nu>
Wed, 3 Aug 2022 09:56:30 +0000 (10:56 +0100)
This reverts commit 97f7effc3f4ac2d812e6e32a832731c1eeb796c7.

cookbooks/tile/recipes/default.rb
cookbooks/tile/templates/default/apache.erb

index e8bef858c83b2b7f21ffdd28e6fae8a876286eb5..4de4200bcdd425192f7677e6469a09edb2fea0ea 100644 (file)
@@ -29,7 +29,6 @@ include_recipe "ruby"
 include_recipe "tools"
 
 blocks = data_bag_item("tile", "blocks")
-admins = data_bag_item("apache", "admins")
 web_passwords = data_bag_item("web", "passwords")
 
 apache_module "alias"
@@ -60,14 +59,6 @@ end
 
 fastlyips = JSON.parse(IO.read("#{Chef::Config[:file_cache_path]}/fastly-ip-list.json"))
 
-remote_file "#{Chef::Config[:file_cache_path]}/statuscake-locations.json" do
-  source "https://app.statuscake.com/Workfloor/Locations.php?format=json"
-  compile_time true
-  ignore_failure true
-end
-
-statuscakelocations = JSON.parse(IO.read("#{Chef::Config[:file_cache_path]}/statuscake-locations.json"))
-
 apache_site "default" do
   action :disable
 end
@@ -78,9 +69,7 @@ end
 
 apache_site "tile.openstreetmap.org" do
   template "apache.erb"
-  variables :fastly => fastlyips["addresses"] + fastlyips["ipv6_addresses"],
-            :statuscake => statuscakelocations.flat_map { |_, v| [v["ip"], v["ipv6"]] },
-            :admins => admins["hosts"]
+  variables :fastly => fastlyips["addresses"]
 end
 
 template "/etc/logrotate.d/apache2" do
index a707cba05b0d24fc22ca949ba2673add7f64cca9..f7cba541b4144106e0b895ca4dc549345737bbc2 100644 (file)
   DocumentRoot /srv/tile.openstreetmap.org/html
   ScriptAlias /cgi-bin/ /srv/tile.openstreetmap.org/cgi-bin/
 
+  # Get the real remote IP for requests via a trusted proxy
+  RemoteIPHeader Fastly-Client-IP
+<% @fastly.sort.each do |address| -%>
+  RemoteIPTrustedProxy <%= address %>
+<% end -%>
+
   # Setup logging
   LogFormat "%a %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined_with_remoteip
   CustomLog /var/log/apache2/access.log combined_with_remoteip
   # Enable the rewrite engine
   RewriteEngine on
 
+  # Enforce rate limits
+  RewriteMap ipmap txt:/srv/tile.openstreetmap.org/conf/ip.map
+  RewriteCond ${ipmap:%{REMOTE_ADDR}} ^.+$
+  RewriteRule ^.*$ /${ipmap:%{REMOTE_ADDR}} [PT]
+
   # Rewrite tile requests to the default style
   RewriteRule ^/(\d+)/(\d+)/(\d+)\.png$ /default/$1/$2/$3.png [PT,T=image/png,L]
   RewriteRule ^/(\d+)/(\d+)/(\d+)\.png/status/?$  /default/$1/$2/$3.png/status [PT,T=text/plain,L]
   # Redirect ACME certificate challenges
   RedirectPermanent /.well-known/acme-challenge/ http://acme.openstreetmap.org/.well-known/acme-challenge/
 
-  # Restrict tile access to CDN nodes and admins
-  <LocationMatch ^/default/\d+/\d+/\d+\.png$>
-<% @fastly.sort.each do |address| -%>
-    Require ip <%= address %>
-<% end -%>
-<% @statuscake.sort.reject { |address| address.empty? }.each do |address| -%>
-    Require ip <%= address %>
-<% end -%>
-<% @admins.sort.each do |address| -%>
-    Require ip <%= address %>
-<% end -%>
-    Require ip 130.117.76.0/27
-    Require ip 2001:978:2:2C::/64
-    Require ip 184.104.226.96/27
-    Require ip 2001:470:1:b3b::/64
-    Require ip 193.60.236.0/24
-  </LocationMatch>
-
-  # Get the real remote IP for requests via a trusted proxy
-  RemoteIPHeader Fastly-Client-IP
-<% @fastly.sort.each do |address| -%>
-  RemoteIPTrustedProxy <%= address %>
-<% end -%>
-
-  # Enforce rate limits
-  RewriteMap ipmap txt:/srv/tile.openstreetmap.org/conf/ip.map
-  RewriteCond ${ipmap:%{REMOTE_ADDR}} ^.+$
-  RewriteRule ^.*$ /${ipmap:%{REMOTE_ADDR}} [PT]
-
   # Internal endpoint for blocked users
   <Location /blocked>
     Header always set Cache-Control private