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 # Set location of renderd socket
23 ModTileRenderdSocketName /run/renderd/renderd.sock
25 # Set location of tile directory
26 ModTileTileDir /srv/tile.openstreetmap.org/tiles
28 # Time to wait for a re-render before serving a dirty tile
29 ModTileRequestTimeout 2
31 # Timeout before giving up for a tile to be rendered that is otherwise missing
32 ModTileMissingRequestTimeout 10
34 # Always try and re-render dirty or missing tiles
35 ModTileMaxLoadOld 1000
36 ModTileMaxLoadMissing 1000
38 # Maximum expiry to set on a tile
39 ModTileCacheDurationMax 604800
41 # Expiry time for dirty tiles that have been queued for re-rendering
42 ModTileCacheDurationDirty 900
44 # Minimum expiry time for fresh tiles
45 ModTileCacheDurationMinimum 10800
46 ModTileCacheDurationMediumZoom 13 86400
47 ModTileCacheDurationLowZoom 9 518400
49 # Factor controlling effect of last modification time on expiry
50 ModTileCacheLastModifiedFactor 0.20
52 # Load tile configuration
53 LoadTileConfigFile /etc/renderd.conf
55 # Get the real remote IP for requests via a trusted proxy
56 RemoteIPHeader Fastly-Client-IP
57 <% @fastly.sort.each do |address| -%>
58 RemoteIPTrustedProxy <%= address %>
62 LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\" %Dus \"%{client-geo-continent}i\" \"%{client-geo-country}i\" \"%{client-geo-proxy-description}i\" \"%{client-geo-proxy-type}i\" \"%{geo.proxy_type}i\" \"%{client-geo-conn-type}i\"" combined_fastly_tile_custom
63 CustomLog /var/log/apache2/access.log combined_fastly_tile_custom
64 ErrorLog /var/log/apache2/error.log
66 # Always set Access-Control-Allow-Origin so that simple CORS requests
67 # will always work and can be cached
68 Header always set Access-Control-Allow-Origin "*" "expr=-z resp('Access-Control-Allow-Origin')"
70 # Add diagnostics header to identify render server
71 Header always set X-TileRender "<%= node.name %>"
73 # Tell clients to use stale tiles if necessary
74 Header append Cache-Control "stale-while-revalidate=604800, stale-if-error=604800" "expr=%{CONTENT_TYPE} == 'image/png'"
76 # Remove Proxy request header to mitigate https://httpoxy.org/
77 RequestHeader unset Proxy early
79 # Enable the rewrite engine
82 # Rewrite tile requests to the default style
83 RewriteRule ^/(\d+)/(\d+)/(\d+)\.png$ /default/$1/$2/$3.png [PT,T=image/png,L]
84 RewriteRule ^/(\d+)/(\d+)/(\d+)\.png/status/?$ /default/$1/$2/$3.png/status [PT,T=text/plain,L]
85 RewriteRule ^/(\d+)/(\d+)/(\d+)\.png/dirty/?$ /default/$1/$2/$3.png/dirty [PT,T=text/plain,L]
87 # Historical Files redirect
88 RedirectPermanent /processed_p.tar.bz2 https://planet.openstreetmap.org/historical-shapefiles/
89 RedirectPermanent /shoreline_300.tar.bz2 https://planet.openstreetmap.org/historical-shapefiles/
90 RedirectPermanent /world_boundaries-spherical.tgz https://planet.openstreetmap.org/historical-shapefiles/
92 # Redirect ACME certificate challenges
93 RedirectPermanent /.well-known/acme-challenge/ http://acme.openstreetmap.org/.well-known/acme-challenge/
95 # Restrict tile access to CDN nodes and admins
96 <LocationMatch ^/default/\d+/\d+/\d+\.png$>
97 Require expr "%{CONN_REMOTE_ADDR} != %{REMOTE_ADDR}"
99 <% @fastly.sort.each do |address| -%>
100 Require ip <%= address %>
102 # StatusCake monitoring
103 <% @statuscake.sort.reject { |address| address.empty? }.each do |address| -%>
104 Require ip <%= address %>
107 <% @admins.sort.each do |address| -%>
108 Require ip <%= address %>
110 # OSM Amsterdam IPv4 (he.net)
111 Require ip 184.104.179.128/27
112 # OSM Amsterdam IPv4 (equinix)
113 Require ip 82.199.86.96/27
114 # OSM Amsterdam IPv6 (he.net)
115 Require ip 2001:470:1:fa1::/64
116 # OSM Amsterdam IPv6 (equinix)
117 Require ip 2001:4d78:500:5e3::/64
118 # OSM Dublin IPv4 (he.net)
119 Require ip 184.104.226.96/27
120 # OSM Dublin IPv4 (equinix)
121 Require ip 87.252.214.96/27
122 # OSM Dublin IPv6 (he.net)
123 Require ip 2001:470:1:b3b::/64
124 # OSM Dublin IPv6 (equinix)
125 Require ip 2001:4d78:fe03:1c::/64
127 Require ip 193.60.236.0/24
132 # Basic server configuration
133 ServerName <%= node.name %>
134 ServerAlias tile.openstreetmap.org
135 ServerAlias render.openstreetmap.org
136 ServerAdmin webmaster@openstreetmap.org
139 LogFormat "%a %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined_with_remoteip
140 CustomLog /var/log/apache2/access.log combined_with_remoteip
141 ErrorLog /var/log/apache2/error.log
143 # Always set Access-Control-Allow-Origin so that simple CORS requests
144 # will always work and can be cached
145 Header set Access-Control-Allow-Origin "*"
147 # Add diagnostics header to identify render server
148 Header set X-TileRender "<%= node.name %>"
150 # Remove Proxy request header to mitigate https://httpoxy.org/
151 RequestHeader unset Proxy early
153 # Enable the rewrite engine
156 # Redirect ACME certificate challenges
157 RewriteRule ^/\.well-known/acme-challenge/(.*)$ http://acme.openstreetmap.org/.well-known/acme-challenge/$1 [R=permanent,L]
160 RewriteCond %{REQUEST_URI} !^/server-status$
161 RewriteCond %{REQUEST_URI} !^/mod_tile$
162 RewriteRule (.*) https://%{SERVER_NAME}/$1 [R=permanent,L]
165 <Directory /srv/tile.openstreetmap.org/html>
171 <Directory /srv/tile.openstreetmap.org/cgi-bin>