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