]> git.openstreetmap.org Git - chef.git/blob - cookbooks/tilecache/templates/default/nginx_tile.conf.erb
tilecache: add faked referer
[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   '~^https?://pmap\.kuku\.lu/'           1; # Too much traffic
90   '~^https?://[^.]*\.pmap\.kuku\.lu/'    1; # Too much traffic
91   '~^https?://fastpokemap\.com/'         1; # Too much traffic
92   '~^https?://[^.]*\.fastpokemap\.com/'  1; # Too much traffic
93   '~^https?://pkget\.com/'               1; # Too much traffic
94   '~^https?://[^.]*\.pkget\.com/'        1; # Too much traffic
95   '~^https?://twpkinfo\.com/'            1; # Too much traffic
96   '~^https?://[^.]*\.twpkinfo\.com/'     1; # Too much traffic
97 }
98
99 map $http_referer $osm_referer {
100   default                                 '';    # False
101   '~^https:\/\/www\.openstreetmap\.org\/' 'osm'; # True
102 }
103
104 # Limit Cache-Control header to only approved User-Agents
105 map $osm_referer$http_user_agent $limit_http_cache_control {
106   default '';                                # Unset Header
107   '~^osmMozilla\/5\.0\ QGIS\/' '';            # Unset Header
108   '~^osmMozilla\/5\.0\ ' $http_cache_control; # Pass Header
109 }
110
111 # Limit Pragma header to only approved User-Agents
112 map $osm_referer$http_user_agent $limit_http_pragma {
113   default '';                          # Unset Header
114   '~^osmMozilla\/5\.0\ QGIS\/' '';     # Unset Header
115   '~^osmMozilla\/5\.0\ ' $http_pragma; # Pass Header
116 }
117
118 server {
119     # IPv4
120     listen       80 deferred backlog=16384 reuseport fastopen=2048 default_server;
121     listen       443 ssl deferred backlog=16384 reuseport fastopen=2048 http2 default_server;
122     # IPv6
123     listen       [::]:80 deferred backlog=16384 reuseport fastopen=2048 default_server;
124     listen       [::]:443 ssl deferred backlog=16384 reuseport fastopen=2048 http2 default_server;
125     server_name  localhost;
126
127     proxy_buffers 8 64k;
128     proxy_busy_buffers_size 64k;
129
130     ssl_certificate      /etc/ssl/certs/tile.openstreetmap.org.pem;
131     ssl_certificate_key  /etc/ssl/private/tile.openstreetmap.org.key;
132
133     # Requests sent within early data are subject to replay attacks.
134     # See: http://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_early_data
135     ssl_early_data on;
136
137     # Immediately 404 layers we do not support
138 <% for i in 20..99 do %>
139     location /<%= i %>/ {
140       set $limit_rate 512;
141       return 404;
142     }
143 <% end %>
144
145     # Immediately 404 silly tile requests
146     location = /0/0/-1.png {
147       set $limit_rate 512;
148       return 404;
149     }
150     location = /1/0/-1.png {
151       set $limit_rate 512;
152       return 404;
153     }
154     location = /1/-1/0.png {
155       set $limit_rate 512;
156       return 404;
157     }
158     location = /1/-1/1.png {
159       set $limit_rate 512;
160       return 404;
161     }
162     location = /1/-1/-1.png {
163       set $limit_rate 512;
164       return 404;
165     }
166     location = /1/-1/2.png {
167       set $limit_rate 512;
168       return 404;
169     }
170     location = /1/1/-1.png {
171       set $limit_rate 512;
172       return 404;
173     }
174     location = /1/2/-1.png {
175       set $limit_rate 512;
176       return 404;
177     }
178     location = /2/0/-1.png {
179       set $limit_rate 512;
180       return 404;
181     }
182     location = /2/-1/0.png {
183       set $limit_rate 512;
184       return 404;
185     }
186     location = /2/-1/1.png {
187       set $limit_rate 512;
188       return 404;
189     }
190     location = /2/1/-1.png {
191       set $limit_rate 512;
192       return 404;
193     }
194     location = /2/-1/2.png {
195       set $limit_rate 512;
196       return 404;
197     }
198     location = /2/-1/3.png {
199       set $limit_rate 512;
200       return 404;
201     }
202
203 <% for i in 0..16 do %>
204 <% if i == 0 -%>
205     # Default Fallback Location Handler (lowest)
206     location / {
207 <% elsif -%>
208     # Dedicated zoom handler for caching
209     location /<%= i %>/ {
210 <% end %>
211       # Only allow GET / HEAD / OPTIONS (CORS) requests
212       limit_except GET HEAD OPTIONS {
213         deny all;
214       }
215
216       proxy_pass http://tile_cache_backend;
217       proxy_set_header X-Forwarded-For $remote_addr;
218       proxy_http_version 1.1;
219       proxy_set_header Connection '';
220
221       proxy_connect_timeout 20s;
222
223       # Replace host header.
224       proxy_set_header Host 'tile.openstreetmap.org';
225       # Do not pass cookies to backends.
226       proxy_set_header Cookie '';
227       # Do not pass Accept-Encoding to backends.
228       proxy_set_header Accept-Encoding '';
229       # Do not pass Accept to backends.
230       proxy_set_header Accept '';
231       # Do not pass Accept-Language to backends as unused.
232       proxy_set_header Accept-Language '';
233       proxy_set_header Accept-Charset '';
234       # Do not send origin, we allow all.
235       proxy_set_header origin '';
236       # Do not pass invalid headers to backend.
237       proxy_set_header X-Forwarded-Host '';
238       proxy_set_header X-Host '';
239       proxy_set_header Authorization '';
240       proxy_set_header Proxy-Authorization '';
241
242       # Drop partial requests
243       proxy_set_header range '';
244
245       # Do not allow setting cookies from backends due to caching.
246       proxy_ignore_headers Set-Cookie;
247       proxy_hide_header Set-Cookie;
248
249 <% if i != 0 -%>
250       # Caching
251       proxy_cache "proxy_cache_zone";
252       proxy_cache_lock on;
253       proxy_cache_valid 200 2d;
254       proxy_cache_valid 404 15m;
255       # Serve stale cache on errors or if updating
256       proxy_cache_use_stale error timeout updating http_404 http_500 http_503 http_504;
257       # If in cache as stale, serve stale and update in background
258       proxy_cache_background_update on;
259       # Workaround nginx async bug which causes stale cache replies to wait for the async backend cache update reply (seen in v1.16.0)
260       keepalive_requests 0;
261       # Enable revalidation using If-Modified-Since and If-None-Match for stale items
262       proxy_cache_revalidate on;
263       proxy_cache_min_uses 4;
264
265       add_header x-cache-status $upstream_cache_status;
266 <% end -%>
267
268       # Set a QoS cookie if none presented (uses nginx Map)
269       # add_header Set-Cookie $cookie_qos_token_set;
270 <% if node[:ssl][:strict_transport_security] -%>
271       # Ensure Strict-Transport-Security header is removed from proxied server responses
272       proxy_hide_header Strict-Transport-Security;
273
274       # Enable HSTS
275       add_header Strict-Transport-Security "<%= node[:ssl][:strict_transport_security] %>" always;
276 <% end -%>
277
278       # QoS Traffic Rate see $limit_rate on http://nginx.org/en/docs/http/ngx_http_core_module.html
279       # set $limit_rate $limit_rate_qos;
280
281       # Allow Higher Traffic Rate from Approved User-Agents which do not support cookies (uses nginx Map)
282       # if ($approved_scraper) {
283       #   set $limit_rate 65536;
284       # }
285
286       if ($denied_scraper) {
287         set $limit_rate 512;
288         return 429;
289       }
290       if ($denied_referer) {
291         set $limit_rate 512;
292         return 418;
293       }
294
295       # Strip any ?query parameters from urls
296       set $args '';
297
298       # Allow cache purging headers only from select User-Agents (uses nginx Map)
299       proxy_set_header Cache-Control $limit_http_cache_control;
300       proxy_set_header Pragma $limit_http_pragma;
301     }
302 <% end %>
303 }