]> git.openstreetmap.org Git - chef.git/blob - cookbooks/tile/templates/default/apache.erb
Document IP ranges with comment
[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   # 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 %>
26 <% end -%>
27
28   # Setup logging
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
32   BufferedLogs on
33
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 "*"
37
38   # Add diagnostics header to identify render server
39   Header set X-TileRender "<%= node.name %>"
40
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'"
43
44   # Remove Proxy request header to mitigate https://httpoxy.org/
45   RequestHeader unset Proxy early
46
47   # Enable the rewrite engine
48   RewriteEngine on
49
50   # Enforce rate limits
51   RewriteMap ipmap txt:/srv/tile.openstreetmap.org/conf/ip.map
52   RewriteCond ${ipmap:%{REMOTE_ADDR}} ^.+$
53   RewriteRule ^.*$ /${ipmap:%{REMOTE_ADDR}} [PT]
54
55   # Rewrite tile requests to the default style
56   RewriteRule ^/(\d+)/(\d+)/(\d+)\.png$ /default/$1/$2/$3.png [PT,T=image/png,L]
57   RewriteRule ^/(\d+)/(\d+)/(\d+)\.png/status/?$  /default/$1/$2/$3.png/status [PT,T=text/plain,L]
58   RewriteRule ^/(\d+)/(\d+)/(\d+)\.png/dirty/?$   /default/$1/$2/$3.png/dirty  [PT,T=text/plain,L]
59
60   # Historical Files redirect
61   RedirectPermanent /processed_p.tar.bz2 https://planet.openstreetmap.org/historical-shapefiles/
62   RedirectPermanent /shoreline_300.tar.bz2 https://planet.openstreetmap.org/historical-shapefiles/
63   RedirectPermanent /world_boundaries-spherical.tgz https://planet.openstreetmap.org/historical-shapefiles/
64
65   # Redirect ACME certificate challenges
66   RedirectPermanent /.well-known/acme-challenge/ http://acme.openstreetmap.org/.well-known/acme-challenge/
67
68   # Restrict tile access to CDN nodes and admins
69   <LocationMatch ^/default/\d+/\d+/\d+\.png$>
70     Require expr "%{CONN_REMOTE_ADDR} != %{REMOTE_ADDR}"
71 <% @fastly.sort.each do |address| -%>
72     Require ip <%= address %>
73 <% end -%>
74 <% @statuscake.sort.reject { |address| address.empty? }.each do |address| -%>
75     Require ip <%= address %>
76 <% end -%>
77 <% @admins.sort.each do |address| -%>
78     Require ip <%= address %>
79 <% end -%>
80     # OSM Amsterdam Cogent IPv4
81     Require ip 130.117.76.0/27
82     # OSM Amsterdam Cogent IPv6
83     Require ip 2001:978:2:2C::/64
84     # OSM Dublin IPv4
85     Require ip 184.104.226.96/27
86     # OSM Dublin IPv6
87     Require ip 2001:470:1:b3b::/64
88     # OSM UCL IPv4
89     Require ip 193.60.236.0/24
90   </LocationMatch>
91
92   # Internal endpoint for blocked users
93   <Location /blocked>
94     Header always set Cache-Control private
95     Redirect 429
96   </Location>
97 </VirtualHost>
98
99 <VirtualHost *:80>
100   # Basic server configuration
101   ServerName <%= node.name %>
102   ServerAlias tile.openstreetmap.org
103   ServerAlias render.openstreetmap.org
104   ServerAdmin webmaster@openstreetmap.org
105
106   # Setup logging
107   LogFormat "%a %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined_with_remoteip
108   CustomLog /var/log/apache2/access.log combined_with_remoteip
109   ErrorLog /var/log/apache2/error.log
110   BufferedLogs on
111
112   # Always set Access-Control-Allow-Origin so that simple CORS requests
113   # will always work and can be cached
114   Header set Access-Control-Allow-Origin "*"
115
116   # Add diagnostics header to identify render server
117   Header set X-TileRender "<%= node.name %>"
118
119   # Remove Proxy request header to mitigate https://httpoxy.org/
120   RequestHeader unset Proxy early
121
122   # Enable the rewrite engine
123   RewriteEngine on
124
125   # Redirect ACME certificate challenges
126   RewriteRule ^/\.well-known/acme-challenge/(.*)$ http://acme.openstreetmap.org/.well-known/acme-challenge/$1 [R=permanent,L]
127
128   # Redirect to https
129   RewriteCond %{REQUEST_URI} !^/server-status$
130   RewriteCond %{REQUEST_URI} !^/mod_tile$
131   RewriteRule (.*) https://%{SERVER_NAME}/$1 [R=permanent,L]
132 </VirtualHost>
133
134 <Directory /srv/tile.openstreetmap.org/html>
135   Options None
136   AllowOverride None
137   Require all granted
138 </Directory>
139
140 <Directory /srv/tile.openstreetmap.org/cgi-bin>
141   Options ExecCGI
142   AllowOverride None
143   Require all granted
144 </Directory>