]> git.openstreetmap.org Git - chef.git/blob - cookbooks/tilecache/templates/default/nginx_tile.conf.erb
47d3bd372380c73d0e52ca289d9e2ce8ddaaa2ba
[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 # Limit Cache-Control header to only approved User-Agents
77 map $http_user_agent $limit_http_cache_control {
78   default '';                              # Unset Header
79   '~^Mozilla\/5\.0\ QGIS\/' '';            # Unset Header
80   '~^Mozilla\/5\.0\ ' $http_cache_control; # Pass Header
81 }
82
83 # Limit Pragma header to only approved User-Agents
84 map $http_user_agent $limit_http_pragma {
85   default '';                       # Unset Header
86   '~^Mozilla\/5\.0\ QGIS\/' '';     # Unset Header
87   '~^Mozilla\/5\.0\ ' $http_pragma; # Pass Header
88 }
89
90 server {
91     listen       443 ssl deferred backlog=16384 reuseport fastopen=2048 http2 default_server;
92     server_name  localhost;
93
94     proxy_buffers 8 64k;
95
96     ssl_certificate      /etc/ssl/certs/tile.openstreetmap.org.pem;
97     ssl_certificate_key  /etc/ssl/private/tile.openstreetmap.org.key;
98
99     # Requests sent within early data are subject to replay attacks.
100     # See: http://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_early_data
101     ssl_early_data on;
102
103     # Immediately 404 layers we do not support
104 <% for i in 20..99 do %>
105     location /<%= i %>/ {
106       set $limit_rate 512;
107       return 404;
108     }
109 <% end %>
110
111     # Immediately 404 silly tile requests
112     location = /0/0/-1.png {
113       set $limit_rate 512;
114       return 404;
115     }
116     location = /1/0/-1.png {
117       set $limit_rate 512;
118       return 404;
119     }
120     location = /1/-1/0.png {
121       set $limit_rate 512;
122       return 404;
123     }
124     location = /1/-1/1.png {
125       set $limit_rate 512;
126       return 404;
127     }
128     location = /1/-1/-1.png {
129       set $limit_rate 512;
130       return 404;
131     }
132     location = /1/-1/2.png {
133       set $limit_rate 512;
134       return 404;
135     }
136     location = /1/1/-1.png {
137       set $limit_rate 512;
138       return 404;
139     }
140     location = /1/2/-1.png {
141       set $limit_rate 512;
142       return 404;
143     }
144     location = /2/0/-1.png {
145       set $limit_rate 512;
146       return 404;
147     }
148     location = /2/-1/0.png {
149       set $limit_rate 512;
150       return 404;
151     }
152     location = /2/-1/1.png {
153       set $limit_rate 512;
154       return 404;
155     }
156     location = /2/1/-1.png {
157       set $limit_rate 512;
158       return 404;
159     }
160     location = /2/-1/2.png {
161       set $limit_rate 512;
162       return 404;
163     }
164     location = /2/-1/3.png {
165       set $limit_rate 512;
166       return 404;
167     }
168
169 <% for i in 0..14 do %>
170 <% if i == 0 -%>
171     # Default Fallback Location Handler (lowest)
172     location / {
173 <% elsif -%>
174     # Dedicated zoom handler for caching
175     location /<%= i %>/ {
176 <% end %>
177       proxy_pass http://tile_cache_backend;
178       proxy_set_header X-Forwarded-For $remote_addr;
179       proxy_http_version 1.1;
180       proxy_set_header Connection '';
181
182       proxy_connect_timeout 10s;
183
184       # Replace host header.
185       proxy_set_header Host 'tile.openstreetmap.org';
186       # Do not pass cookies to backends.
187       proxy_set_header Cookie '';
188       # Do not pass Accept-Encoding to backends.
189       proxy_set_header Accept-Encoding '';
190       # Do not pass Accept to backends.
191       proxy_set_header Accept '';
192       # Do not pass Accept-Language to backends as unused.
193       proxy_set_header Accept-Language '';
194       proxy_set_header Accept-Charset '';
195       # Do not send origin, we allow all.
196       proxy_set_header origin '';
197       # Do not pass invalid headers to backend.
198       proxy_set_header X-Forwarded-Host '';
199       proxy_set_header X-Host '';
200       proxy_set_header Authorization '';
201       proxy_set_header Proxy-Authorization '';
202
203       # Drop partial requests
204       proxy_set_header range '';
205
206       # Do not allow setting cookies from backends due to caching.
207       proxy_ignore_headers Set-Cookie;
208       proxy_hide_header Set-Cookie;
209
210 <% if i != 0 -%>
211       # Caching
212       proxy_cache "proxy_cache_zone";
213       proxy_cache_lock on;
214       proxy_cache_valid 200 1d;
215       proxy_cache_valid 404 15m;
216       # Serve stale cache on errors or if updating
217       proxy_cache_use_stale error timeout updating http_500 http_503 http_504;
218       # If in cache as stale, serve stale and update in background
219       proxy_cache_background_update on;
220       proxy_cache_min_uses 8;
221
222       add_header X-Nginx-Cache-Status $upstream_cache_status;
223 <% end -%>
224
225       # Set a QoS cookie if none presented (uses nginx Map)
226       add_header Set-Cookie $cookie_qos_token_set;
227 <% if node[:ssl][:strict_transport_security] -%>
228       # Ensure Strict-Transport-Security header is removed from proxied server responses
229       proxy_hide_header Strict-Transport-Security;
230
231       # Enable HSTS
232       add_header Strict-Transport-Security "<%= node[:ssl][:strict_transport_security] %>" always;
233 <% end -%>
234
235       # QoS Traffic Rate see $limit_rate on http://nginx.org/en/docs/http/ngx_http_core_module.html
236       set $limit_rate $limit_rate_qos;
237
238       # Allow Higher Traffic Rate from Approved User-Agents which do not support cookies (uses nginx Map)
239       if ($approved_scraper) {
240         set $limit_rate 65536;
241       }
242
243       if ($denied_scraper) {
244         set $limit_rate 512;
245         return 429;
246       }
247       if ($denied_referer) {
248         set $limit_rate 512;
249         return 418;
250       }
251
252       # Strip any ?query parameters from urls
253       set $args '';
254
255       # Allow cache purging headers only from select User-Agents (uses nginx Map)
256       proxy_set_header Cache-Control $limit_http_cache_control;
257       proxy_set_header Pragma $limit_http_pragma;
258     }
259 <% end %>
260 }