]> git.openstreetmap.org Git - chef.git/commitdiff
Stop handling X-Forwarded-For from old tile CDN
authorTom Hughes <tom@compton.nu>
Tue, 13 Jul 2021 16:19:56 +0000 (17:19 +0100)
committerTom Hughes <tom@compton.nu>
Tue, 13 Jul 2021 16:19:56 +0000 (17:19 +0100)
cookbooks/tile/recipes/default.rb
cookbooks/tile/templates/default/apache.erb

index d31b0bc3c049fd1916e70869a16e718977d3c641..957caa8ca50dffa2dc15021a1d6cf56ebe46ea4e 100644 (file)
@@ -56,7 +56,6 @@ remote_file "#{Chef::Config[:file_cache_path]}/fastly-ip-list.json" do
   ignore_failure true
 end
 
-tilecaches = search(:node, "roles:tilecache").sort_by { |n| n[:hostname] }
 fastlyips = JSON.parse(IO.read("#{Chef::Config[:file_cache_path]}/fastly-ip-list.json"))
 
 apache_site "default" do
@@ -69,7 +68,7 @@ end
 
 apache_site "tile.openstreetmap.org" do
   template "apache.erb"
-  variables :caches => tilecaches, :fastly => fastlyips["addresses"]
+  variables :fastly => fastlyips["addresses"]
 end
 
 template "/etc/logrotate.d/apache2" do
index e6f8ade1cbb135d3aa427acdb80e50b134183c06..e43d62e5130ab81185554b9791f6801168605ec2 100644 (file)
 
   # Get the real remote IP for requests via a trusted proxy
   RemoteIPHeader X-Forwarded-For
-<% @caches.each do |cache| -%>
-<% cache.ipaddresses(:role => :external).sort.each do |address| -%>
-  RemoteIPTrustedProxy <%= address %>
-<% end -%>
-<% end -%>
 <% @fastly.sort.each do |address| -%>
   RemoteIPTrustedProxy <%= address %>
 <% end -%>
   ServerAlias render.openstreetmap.org
   ServerAdmin webmaster@openstreetmap.org
 
-  # Get the real remote IP for requests via a trusted proxy
-  RemoteIPHeader X-Forwarded-For
-<% @caches.each do |cache| -%>
-<% cache.ipaddresses(:role => :external).sort.each do |address| -%>
-  RemoteIPTrustedProxy <%= address %>
-<% end -%>
-<% 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