]> git.openstreetmap.org Git - chef.git/blob - cookbooks/tile/templates/default/apache.erb
Get real tile source from Fastly-Client-IP for new tile CDN
[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   # 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]
54
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/
59
60   # Redirect ACME certificate challenges
61   RedirectPermanent /.well-known/acme-challenge/ http://acme.openstreetmap.org/.well-known/acme-challenge/
62 </VirtualHost>
63
64 <VirtualHost *:80>
65   # Basic server configuration
66   ServerName <%= node.name %>
67   ServerAlias tile.openstreetmap.org
68   ServerAlias render.openstreetmap.org
69   ServerAdmin webmaster@openstreetmap.org
70
71   # Setup logging
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
75   BufferedLogs on
76
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 "*"
80
81   # Add diagnostics header to identify render server
82   Header set X-TileRender "<%= node.name %>"
83
84   # Remove Proxy request header to mitigate https://httpoxy.org/
85   RequestHeader unset Proxy early
86
87   # Enable the rewrite engine
88   RewriteEngine on
89
90   # Redirect ACME certificate challenges
91   RewriteRule ^/\.well-known/acme-challenge/(.*)$ http://acme.openstreetmap.org/.well-known/acme-challenge/$1 [R=permanent,L]
92
93   # Redirect to https
94   RewriteCond %{REQUEST_URI} !^/server-status$
95   RewriteCond %{REQUEST_URI} !^/mod_tile$
96   RewriteRule (.*) https://%{SERVER_NAME}/$1 [R=permanent,L]
97 </VirtualHost>
98
99 <Directory /srv/tile.openstreetmap.org/html>
100   Options None
101   AllowOverride None
102   Require all granted
103 </Directory>
104
105 <Directory /srv/tile.openstreetmap.org/cgi-bin>
106   Options ExecCGI
107   AllowOverride None
108   Require all granted
109 </Directory>