1 # DO NOT EDIT - This file is being maintained by Chef
3 upstream tile_cache_backend {
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] %>
18 keepalive_requests 1024;
21 # Geo Map of tile caches
24 <% @caches.each do |cache| -%>
25 <% cache.ipaddresses(:family => :inet, :role => :external).sort.each do |address| -%>
26 <%= address %> 1; # <%= cache[:hostname] %>
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;
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;
41 map $http_user_agent $approved_scraper {
42 default 0; # Not approved
44 '~^Mozilla\/5\.0\ QGIS\/' 1; # QGIS
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 'C# TilesDownloader' 1; # Downloader
60 'MapDownloader' 1; # Downloader
61 'Android' 1; # Default or fake
62 'kc_android' 1; # Default or fake
63 'Mozilla/4.0' 1; # Fake
64 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)' 1; # Fake
65 '~^runtastic' 1; # App
66 '~^Where\ my\ children' 1; # App
67 'nossoonibusjp.android.crosswalk' 1; # App
68 'br.com.concisoti.potybus' 1; # App
71 map $http_referer $denied_referer {
72 default 0; # Not denied
73 'http://www.openstreetmap.org/' 1; # Faked
74 'http://www.openstreetmap.org' 1; # Faked
75 'http://openstreetmap.org/' 1; # Faked
76 'http://openstreetmap.org' 1; # Faked
77 'http://www.osm.org/' 1; # Faked
78 'http://www.osm.org' 1; # Faked
79 'http://osm.org/' 1; # Faked
80 'http://osm.org' 1; # Faked
81 '~^http://google\.com' 1; # Faked
82 '~^http://www\.google\.com' 1; # Faked
83 '~^https?://pmap\.kuku\.lu/' 1; # Too much traffic
84 '~^https?://[^.]*\.pmap\.kuku\.lu/' 1; # Too much traffic
85 '~^https?://fastpokemap\.com/' 1; # Too much traffic
86 '~^https?://[^.]*\.fastpokemap\.com/' 1; # Too much traffic
87 '~^https?://pkget\.com/' 1; # Too much traffic
88 '~^https?://[^.]*\.pkget\.com/' 1; # Too much traffic
89 '~^https?://twpkinfo\.com/' 1; # Too much traffic
90 '~^https?://[^.]*\.twpkinfo\.com/' 1; # Too much traffic
93 map $http_referer $osm_referer {
95 '~^https:\/\/www\.openstreetmap\.org\/' 'osm'; # True
98 # Limit Cache-Control header to only approved User-Agents
99 map $osm_referer$http_user_agent $limit_http_cache_control {
100 default ''; # Unset Header
101 '~^osmMozilla\/5\.0\ QGIS\/' ''; # Unset Header
102 '~^osmMozilla\/5\.0\ ' $http_cache_control; # Pass Header
105 # Limit Pragma header to only approved User-Agents
106 map $osm_referer$http_user_agent $limit_http_pragma {
107 default ''; # Unset Header
108 '~^osmMozilla\/5\.0\ QGIS\/' ''; # Unset Header
109 '~^osmMozilla\/5\.0\ ' $http_pragma; # Pass Header
114 listen 80 deferred backlog=16384 reuseport fastopen=2048 default_server;
115 listen 443 ssl deferred backlog=16384 reuseport fastopen=2048 http2 default_server;
117 listen [::]:80 deferred backlog=16384 reuseport fastopen=2048 default_server;
118 listen [::]:443 ssl deferred backlog=16384 reuseport fastopen=2048 http2 default_server;
119 server_name localhost;
122 proxy_busy_buffers_size 64k;
124 ssl_certificate /etc/ssl/certs/tile.openstreetmap.org.pem;
125 ssl_certificate_key /etc/ssl/private/tile.openstreetmap.org.key;
127 # Requests sent within early data are subject to replay attacks.
128 # See: http://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_early_data
131 # Immediately 404 layers we do not support
132 <% for i in 20..99 do %>
133 location /<%= i %>/ {
139 # Immediately 404 silly tile requests
140 location = /0/0/-1.png {
144 location = /1/0/-1.png {
148 location = /1/-1/0.png {
152 location = /1/-1/1.png {
156 location = /1/-1/-1.png {
160 location = /1/-1/2.png {
164 location = /1/1/-1.png {
168 location = /1/2/-1.png {
172 location = /2/0/-1.png {
176 location = /2/-1/0.png {
180 location = /2/-1/1.png {
184 location = /2/1/-1.png {
188 location = /2/-1/2.png {
192 location = /2/-1/3.png {
197 <% for i in 0..15 do %>
199 # Default Fallback Location Handler (lowest)
202 # Dedicated zoom handler for caching
203 location /<%= i %>/ {
205 # Only allow GET / HEAD / OPTIONS (CORS) requests
206 limit_except GET HEAD OPTIONS {
210 proxy_pass http://tile_cache_backend;
211 proxy_set_header X-Forwarded-For $remote_addr;
212 proxy_http_version 1.1;
213 proxy_set_header Connection '';
215 proxy_connect_timeout 10s;
217 # Replace host header.
218 proxy_set_header Host 'tile.openstreetmap.org';
219 # Do not pass cookies to backends.
220 proxy_set_header Cookie '';
221 # Do not pass Accept-Encoding to backends.
222 proxy_set_header Accept-Encoding '';
223 # Do not pass Accept to backends.
224 proxy_set_header Accept '';
225 # Do not pass Accept-Language to backends as unused.
226 proxy_set_header Accept-Language '';
227 proxy_set_header Accept-Charset '';
228 # Do not send origin, we allow all.
229 proxy_set_header origin '';
230 # Do not pass invalid headers to backend.
231 proxy_set_header X-Forwarded-Host '';
232 proxy_set_header X-Host '';
233 proxy_set_header Authorization '';
234 proxy_set_header Proxy-Authorization '';
236 # Drop partial requests
237 proxy_set_header range '';
239 # Do not allow setting cookies from backends due to caching.
240 proxy_ignore_headers Set-Cookie;
241 proxy_hide_header Set-Cookie;
245 proxy_cache "proxy_cache_zone";
247 proxy_cache_valid 200 1d;
248 proxy_cache_valid 404 15m;
249 # Serve stale cache on errors or if updating
250 proxy_cache_use_stale error timeout updating http_404 http_500 http_503 http_504;
251 # If in cache as stale, serve stale and update in background
252 proxy_cache_background_update on;
253 # Enable revalidation using If-Modified-Since and If-None-Match for stale items
254 proxy_cache_revalidate on;
255 proxy_cache_min_uses 8;
257 add_header x-cache-status $upstream_cache_status;
260 # Set a QoS cookie if none presented (uses nginx Map)
261 # add_header Set-Cookie $cookie_qos_token_set;
262 <% if node[:ssl][:strict_transport_security] -%>
263 # Ensure Strict-Transport-Security header is removed from proxied server responses
264 proxy_hide_header Strict-Transport-Security;
267 add_header Strict-Transport-Security "<%= node[:ssl][:strict_transport_security] %>" always;
270 # QoS Traffic Rate see $limit_rate on http://nginx.org/en/docs/http/ngx_http_core_module.html
271 # set $limit_rate $limit_rate_qos;
273 # Allow Higher Traffic Rate from Approved User-Agents which do not support cookies (uses nginx Map)
274 # if ($approved_scraper) {
275 # set $limit_rate 65536;
278 if ($denied_scraper) {
282 if ($denied_referer) {
287 # Strip any ?query parameters from urls
290 # Allow cache purging headers only from select User-Agents (uses nginx Map)
291 proxy_set_header Cache-Control $limit_http_cache_control;
292 proxy_set_header Pragma $limit_http_pragma;