]> git.openstreetmap.org Git - chef.git/blob - cookbooks/tilecache/templates/default/nginx_tile.conf.erb
tilecache: limit supported request methods
[chef.git] / cookbooks / tilecache / templates / default / nginx_tile.conf.erb
1 # DO NOT EDIT - This file is being maintained by Chef
2
3 upstream tile_cache_backend {
4   server 127.0.0.1;
5   server 127.0.0.2;
6   server 127.0.0.3;
7
8   # Add the other caches to relieve pressure if local squid failing
9   # Balancer: round-robin
10 <% @caches.each do |cache| -%>
11 <% if cache[:hostname] != node[:hostname] -%>
12 <% if node[:tilecache][:tile_siblings].include? cache[:fqdn] -%>
13 <% cache.ipaddresses(:family => :inet, :role => :external).sort.each do |address| -%>
14   server <%= address %> backup; # Server <%= cache[:hostname] %>
15 <% end -%>
16 <% end -%>
17 <% end -%>
18 <% end -%>
19
20   keepalive 512;
21   keepalive_requests 1024;
22 }
23
24 # Geo Map of tile caches
25 geo $tile_cache {
26   default 0;
27 <% @caches.each do |cache| -%>
28 <% cache.ipaddresses(:family => :inet, :role => :external).sort.each do |address| -%>
29   <%= address %> 1; # <%= cache[:hostname] %>
30 <% end -%>
31 <% end -%>
32 }
33
34 # Rates table based on current cookie value
35 map $cookie__osm_totp_token $limit_rate_qos {
36   include /etc/nginx/conf.d/tile_qos_rates.map;
37 }
38
39 # Set-Cookie table based on current cookie value
40 map $cookie__osm_totp_token $cookie_qos_token_set {
41   include /etc/nginx/conf.d/tile_qos_cookies.map;
42 }
43
44 map $http_user_agent $approved_scraper {
45   default                   0; # Not approved
46   '~^JOSM\/'                1; # JOSM
47   '~^Mozilla\/5\.0\ QGIS\/' 1; # QGIS
48 }
49
50 map $http_user_agent $denied_scraper {
51   default                0; # Not denied
52   ''                     1; # No User-Agent Set
53   '~^Python\-urllib\/'   1; # Library Default
54   '~^python\-requests\/' 1; # Library Default
55   '~^node\-fetch\/'      1; # Library Default
56   '~^R$'                 1; # Library Default
57   '~^Java\/'             1; # Library Default
58   '~^tiles$'             1; # Library Default
59   '~^runtastic'          1; # App
60   'Mozilla/4.0'          1; # Fake
61   'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)' 1;  # Fake
62 }
63
64 map $http_referer $denied_referer {
65   default                          0; # Not denied
66   'http://www.openstreetmap.org/'  1; # Faked
67   'http://www.openstreetmap.org'   1; # Faked
68   'http://openstreetmap.org/'      1; # Faked
69   'http://openstreetmap.org'       1; # Faked
70   'http://www.osm.org/'            1; # Faked
71   'http://www.osm.org'             1; # Faked
72   'http://osm.org/'                1; # Faked
73   'http://osm.org'                 1; # Faked
74 }
75
76 map $http_referer $osm_referer {
77   default                                 '';    # False
78   '~^https:\/\/www\.openstreetmap\.org\/' 'osm'; # True
79 }
80
81 # Limit Cache-Control header to only approved User-Agents
82 map $osm_referer$http_user_agent $limit_http_cache_control {
83   default '';                                # Unset Header
84   '~^osmMozilla\/5\.0\ QGIS\/' '';            # Unset Header
85   '~^osmMozilla\/5\.0\ ' $http_cache_control; # Pass Header
86 }
87
88 # Limit Pragma header to only approved User-Agents
89 map $osm_referer$http_user_agent $limit_http_pragma {
90   default '';                          # Unset Header
91   '~^osmMozilla\/5\.0\ QGIS\/' '';     # Unset Header
92   '~^osmMozilla\/5\.0\ ' $http_pragma; # Pass Header
93 }
94
95 server {
96     listen       443 ssl deferred backlog=16384 reuseport fastopen=2048 http2 default_server;
97     server_name  localhost;
98
99     proxy_buffers 8 64k;
100
101     ssl_certificate      /etc/ssl/certs/tile.openstreetmap.org.pem;
102     ssl_certificate_key  /etc/ssl/private/tile.openstreetmap.org.key;
103
104     # Requests sent within early data are subject to replay attacks.
105     # See: http://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_early_data
106     ssl_early_data on;
107
108     # Only allow GET / HEAD / OPTIONS (CORS) requests
109     limit_except GET HEAD OPTIONS {
110       deny all;
111     }
112
113     # Immediately 404 layers we do not support
114 <% for i in 20..99 do %>
115     location /<%= i %>/ {
116       set $limit_rate 512;
117       return 404;
118     }
119 <% end %>
120
121     # Immediately 404 silly tile requests
122     location = /0/0/-1.png {
123       set $limit_rate 512;
124       return 404;
125     }
126     location = /1/0/-1.png {
127       set $limit_rate 512;
128       return 404;
129     }
130     location = /1/-1/0.png {
131       set $limit_rate 512;
132       return 404;
133     }
134     location = /1/-1/1.png {
135       set $limit_rate 512;
136       return 404;
137     }
138     location = /1/-1/-1.png {
139       set $limit_rate 512;
140       return 404;
141     }
142     location = /1/-1/2.png {
143       set $limit_rate 512;
144       return 404;
145     }
146     location = /1/1/-1.png {
147       set $limit_rate 512;
148       return 404;
149     }
150     location = /1/2/-1.png {
151       set $limit_rate 512;
152       return 404;
153     }
154     location = /2/0/-1.png {
155       set $limit_rate 512;
156       return 404;
157     }
158     location = /2/-1/0.png {
159       set $limit_rate 512;
160       return 404;
161     }
162     location = /2/-1/1.png {
163       set $limit_rate 512;
164       return 404;
165     }
166     location = /2/1/-1.png {
167       set $limit_rate 512;
168       return 404;
169     }
170     location = /2/-1/2.png {
171       set $limit_rate 512;
172       return 404;
173     }
174     location = /2/-1/3.png {
175       set $limit_rate 512;
176       return 404;
177     }
178
179 <% for i in 0..14 do %>
180 <% if i == 0 -%>
181     # Default Fallback Location Handler (lowest)
182     location / {
183 <% elsif -%>
184     # Dedicated zoom handler for caching
185     location /<%= i %>/ {
186 <% end %>
187       proxy_pass http://tile_cache_backend;
188       proxy_set_header X-Forwarded-For $remote_addr;
189       proxy_http_version 1.1;
190       proxy_set_header Connection '';
191
192       proxy_connect_timeout 10s;
193
194       # Replace host header.
195       proxy_set_header Host 'tile.openstreetmap.org';
196       # Do not pass cookies to backends.
197       proxy_set_header Cookie '';
198       # Do not pass Accept-Encoding to backends.
199       proxy_set_header Accept-Encoding '';
200       # Do not pass Accept to backends.
201       proxy_set_header Accept '';
202       # Do not pass Accept-Language to backends as unused.
203       proxy_set_header Accept-Language '';
204       proxy_set_header Accept-Charset '';
205       # Do not send origin, we allow all.
206       proxy_set_header origin '';
207       # Do not pass invalid headers to backend.
208       proxy_set_header X-Forwarded-Host '';
209       proxy_set_header X-Host '';
210       proxy_set_header Authorization '';
211       proxy_set_header Proxy-Authorization '';
212
213       # Drop partial requests
214       proxy_set_header range '';
215
216       # Do not allow setting cookies from backends due to caching.
217       proxy_ignore_headers Set-Cookie;
218       proxy_hide_header Set-Cookie;
219
220 <% if i != 0 -%>
221       # Caching
222       proxy_cache "proxy_cache_zone";
223       proxy_cache_lock on;
224       proxy_cache_valid 200 1d;
225       proxy_cache_valid 404 15m;
226       # Serve stale cache on errors or if updating
227       proxy_cache_use_stale error timeout updating http_500 http_503 http_504;
228       # If in cache as stale, serve stale and update in background
229       proxy_cache_background_update on;
230       proxy_cache_min_uses 8;
231
232       add_header X-Nginx-Cache-Status $upstream_cache_status;
233 <% end -%>
234
235       # Set a QoS cookie if none presented (uses nginx Map)
236       add_header Set-Cookie $cookie_qos_token_set;
237 <% if node[:ssl][:strict_transport_security] -%>
238       # Ensure Strict-Transport-Security header is removed from proxied server responses
239       proxy_hide_header Strict-Transport-Security;
240
241       # Enable HSTS
242       add_header Strict-Transport-Security "<%= node[:ssl][:strict_transport_security] %>" always;
243 <% end -%>
244
245       # QoS Traffic Rate see $limit_rate on http://nginx.org/en/docs/http/ngx_http_core_module.html
246       set $limit_rate $limit_rate_qos;
247
248       # Allow Higher Traffic Rate from Approved User-Agents which do not support cookies (uses nginx Map)
249       if ($approved_scraper) {
250         set $limit_rate 65536;
251       }
252
253       if ($denied_scraper) {
254         set $limit_rate 512;
255         return 429;
256       }
257       if ($denied_referer) {
258         set $limit_rate 512;
259         return 418;
260       }
261
262       # Strip any ?query parameters from urls
263       set $args '';
264
265       # Allow cache purging headers only from select User-Agents (uses nginx Map)
266       proxy_set_header Cache-Control $limit_http_cache_control;
267       proxy_set_header Pragma $limit_http_pragma;
268     }
269 <% end %>
270 }