]> git.openstreetmap.org Git - chef.git/blob - cookbooks/tile/templates/default/apache.erb
Lower energy_perf_bias on power limited azure-01/02
[chef.git] / cookbooks / tile / templates / default / apache.erb
1 # DO NOT EDIT - This file is being maintained by Chef
2
3 <VirtualHost *:443>
4   # Basic server configuration
5   ServerName <%= node.name %>
6   ServerAlias tile.openstreetmap.org
7   ServerAlias render.openstreetmap.org
8   ServerAdmin webmaster@openstreetmap.org
9
10   #
11   # Enable SSL
12   #
13   SSLEngine on
14   SSLProxyEngine on
15   SSLCertificateFile /etc/ssl/certs/<%= node[:fqdn] %>.pem
16   SSLCertificateKeyFile /etc/ssl/private/<%= node[:fqdn] %>.key
17
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/
21
22   # Set location of renderd socket
23   ModTileRenderdSocketName /run/renderd/renderd.sock
24
25   # Set location of tile directory
26   ModTileTileDir /srv/tile.openstreetmap.org/tiles
27
28   # Time to wait for a re-render before serving a dirty tile
29   ModTileRequestTimeout 2
30
31   # Timeout before giving up for a tile to be rendered that is otherwise missing
32   ModTileMissingRequestTimeout 10
33
34   # Always try and re-render dirty or missing tiles
35   ModTileMaxLoadOld 1000
36   ModTileMaxLoadMissing 1000
37
38   # Maximum expiry to set on a tile
39   ModTileCacheDurationMax 604800
40
41   # Expiry time for dirty tiles that have been queued for re-rendering
42   ModTileCacheDurationDirty 900
43
44   # Minimum expiry time for fresh tiles
45   ModTileCacheDurationMinimum 10800
46   ModTileCacheDurationMediumZoom 13 86400
47   ModTileCacheDurationLowZoom 9 518400
48
49   # Factor controlling effect of last modification time on expiry
50   ModTileCacheLastModifiedFactor 0.20
51
52   # Load tile configuration
53   LoadTileConfigFile /etc/renderd.conf
54
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 %>
59 <% end -%>
60
61   # Setup logging
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
65
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')"
69
70   # Add diagnostics header to identify render server
71   Header always set X-TileRender "<%= node.name %>"
72
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'"
75
76   # Remove Proxy request header to mitigate https://httpoxy.org/
77   RequestHeader unset Proxy early
78
79   # Enable the rewrite engine
80   RewriteEngine on
81
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]
86
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/
91
92   # Redirect ACME certificate challenges
93   RedirectPermanent /.well-known/acme-challenge/ http://acme.openstreetmap.org/.well-known/acme-challenge/
94
95   # Restrict tile access to CDN nodes and admins
96   <LocationMatch ^/default/\d+/\d+/\d+\.png$>
97     Require expr "%{CONN_REMOTE_ADDR} != %{REMOTE_ADDR}"
98     # Fastly POPs
99 <% @fastly.sort.each do |address| -%>
100     Require ip <%= address %>
101 <% end -%>
102     # StatusCake monitoring
103 <% @statuscake.sort.reject { |address| address.empty? }.each do |address| -%>
104     Require ip <%= address %>
105 <% end -%>
106     # Administrators
107 <% @admins.sort.each do |address| -%>
108     Require ip <%= address %>
109 <% end -%>
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
126     # OSM UCL IPv4
127     Require ip 193.60.236.0/24
128   </LocationMatch>
129 </VirtualHost>
130
131 <VirtualHost *:80>
132   # Basic server configuration
133   ServerName <%= node.name %>
134   ServerAlias tile.openstreetmap.org
135   ServerAlias render.openstreetmap.org
136   ServerAdmin webmaster@openstreetmap.org
137
138   # Setup logging
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
142
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 "*"
146
147   # Add diagnostics header to identify render server
148   Header set X-TileRender "<%= node.name %>"
149
150   # Remove Proxy request header to mitigate https://httpoxy.org/
151   RequestHeader unset Proxy early
152
153   # Enable the rewrite engine
154   RewriteEngine on
155
156   # Redirect ACME certificate challenges
157   RewriteRule ^/\.well-known/acme-challenge/(.*)$ http://acme.openstreetmap.org/.well-known/acme-challenge/$1 [R=permanent,L]
158
159   # Redirect to https
160   RewriteCond %{REQUEST_URI} !^/server-status$
161   RewriteCond %{REQUEST_URI} !^/mod_tile$
162   RewriteRule (.*) https://%{SERVER_NAME}/$1 [R=permanent,L]
163 </VirtualHost>
164
165 <Directory /srv/tile.openstreetmap.org/html>
166   Options None
167   AllowOverride None
168   Require all granted
169 </Directory>
170
171 <Directory /srv/tile.openstreetmap.org/cgi-bin>
172   Options ExecCGI
173   AllowOverride None
174   Require all granted
175 </Directory>