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