1 # DO NOT EDIT - This file is being maintained by Chef
 
   4   # Basic server configuration
 
   5   ServerName <%= node.name %>
 
   6   ServerAlias tile.openstreetmap.org
 
   7   ServerAlias render.openstreetmap.org
 
   8   ServerAdmin webmaster@openstreetmap.org
 
  15   SSLCertificateFile /etc/ssl/certs/<%= node[:fqdn] %>.pem
 
  16   SSLCertificateKeyFile /etc/ssl/private/<%= node[:fqdn] %>.key
 
  18   # Configure location of static files and CGI scripts
 
  19   DocumentRoot /srv/tile.openstreetmap.org/html
 
  20   ScriptAlias /cgi-bin/ /srv/tile.openstreetmap.org/cgi-bin/
 
  22   # Get the real remote IP for requests via a trusted proxy
 
  23   RemoteIPHeader Fastly-Client-IP
 
  24 <% @fastly.sort.each do |address| -%>
 
  25   RemoteIPTrustedProxy <%= address %>
 
  29   LogFormat "%a %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined_with_remoteip
 
  30   CustomLog /var/log/apache2/access.log combined_with_remoteip
 
  31   ErrorLog /var/log/apache2/error.log
 
  34   # Always set Access-Control-Allow-Origin so that simple CORS requests
 
  35   # will always work and can be cached
 
  36   Header set Access-Control-Allow-Origin "*"
 
  38   # Add diagnostics header to identify render server
 
  39   Header set X-TileRender "<%= node.name %>"
 
  41   # Tell clients to use stale tiles if necessary
 
  42   Header append Cache-Control "stale-while-revalidate=604800, stale-if-error=604800" "expr=%{CONTENT_TYPE} == 'image/png'"
 
  44   # Remove Proxy request header to mitigate https://httpoxy.org/
 
  45   RequestHeader unset Proxy early
 
  47   # Enable the rewrite engine
 
  50   # Rewrite tile requests to the default style
 
  51   RewriteRule ^/(\d+)/(\d+)/(\d+)\.png$ /default/$1/$2/$3.png [PT,T=image/png,L]
 
  52   RewriteRule ^/(\d+)/(\d+)/(\d+)\.png/status/?$  /default/$1/$2/$3.png/status [PT,T=text/plain,L]
 
  53   RewriteRule ^/(\d+)/(\d+)/(\d+)\.png/dirty/?$   /default/$1/$2/$3.png/dirty  [PT,T=text/plain,L]
 
  55   # Historical Files redirect
 
  56   RedirectPermanent /processed_p.tar.bz2 https://planet.openstreetmap.org/historical-shapefiles/
 
  57   RedirectPermanent /shoreline_300.tar.bz2 https://planet.openstreetmap.org/historical-shapefiles/
 
  58   RedirectPermanent /world_boundaries-spherical.tgz https://planet.openstreetmap.org/historical-shapefiles/
 
  60   # Redirect ACME certificate challenges
 
  61   RedirectPermanent /.well-known/acme-challenge/ http://acme.openstreetmap.org/.well-known/acme-challenge/
 
  65   # Basic server configuration
 
  66   ServerName <%= node.name %>
 
  67   ServerAlias tile.openstreetmap.org
 
  68   ServerAlias render.openstreetmap.org
 
  69   ServerAdmin webmaster@openstreetmap.org
 
  72   LogFormat "%a %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined_with_remoteip
 
  73   CustomLog /var/log/apache2/access.log combined_with_remoteip
 
  74   ErrorLog /var/log/apache2/error.log
 
  77   # Always set Access-Control-Allow-Origin so that simple CORS requests
 
  78   # will always work and can be cached
 
  79   Header set Access-Control-Allow-Origin "*"
 
  81   # Add diagnostics header to identify render server
 
  82   Header set X-TileRender "<%= node.name %>"
 
  84   # Remove Proxy request header to mitigate https://httpoxy.org/
 
  85   RequestHeader unset Proxy early
 
  87   # Enable the rewrite engine
 
  90   # Redirect ACME certificate challenges
 
  91   RewriteRule ^/\.well-known/acme-challenge/(.*)$ http://acme.openstreetmap.org/.well-known/acme-challenge/$1 [R=permanent,L]
 
  94   RewriteCond %{REQUEST_URI} !^/server-status$
 
  95   RewriteCond %{REQUEST_URI} !^/mod_tile$
 
  96   RewriteRule (.*) https://%{SERVER_NAME}/$1 [R=permanent,L]
 
  99 <Directory /srv/tile.openstreetmap.org/html>
 
 105 <Directory /srv/tile.openstreetmap.org/cgi-bin>