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