]> git.openstreetmap.org Git - chef.git/blob - cookbooks/imagery/templates/default/nginx_titiler.conf.erb
imagery: increase http2 max concurrent streams
[chef.git] / cookbooks / imagery / templates / default / nginx_titiler.conf.erb
1 server {
2     listen 80;
3     listen [::]:80;
4     server_name <%= @name %> <% @aliases.each do |alias_name| %> <%= alias_name %><%- end -%>;
5
6     rewrite ^/\.well-known/acme-challenge/(.*)$ http://acme.openstreetmap.org/.well-known/acme-challenge/$1 permanent;
7
8     location / {
9       return 301 https://$host$request_uri;
10     }
11
12     location /za-25cm {
13       root "/store/imagery/za";
14       expires max;
15     }
16 }
17
18 server {
19     listen 443 ssl http2;
20     listen [::]:443 ssl http2;
21     server_name <%= @name %> <% @aliases.each do |alias_name| %> <%= alias_name %><%- end -%>;
22
23     http2_max_concurrent_streams 512;
24
25     ssl_certificate /etc/ssl/certs/<%= @name %>.pem;
26     ssl_certificate_key /etc/ssl/private/<%= @name %>.key;
27 <% if node[:ssl][:strict_transport_security] -%>
28
29     add_header Strict-Transport-Security "<%= node[:ssl][:strict_transport_security] %>" always;
30 <% end -%>
31
32     # Requests sent within early data are subject to replay attacks.
33     # See: http://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_early_data
34     ssl_early_data on;
35
36     # root "/srv/<%= @name %>";
37
38     gzip on;
39     gzip_types text/plain text/css application/json application/javascript application/x-javascript text/javascript text/xml application/xml application/rss+xml application/atom+xml application/rdf+xml image/svg+xml; # text/html is implicit
40     gzip_min_length 512;
41     gzip_http_version 1.0;
42     gzip_proxied any;
43     gzip_comp_level 9;
44     gzip_vary on;
45
46     location /za-25cm {
47       root "/store/imagery/za";
48       expires max;
49     }
50
51     location /api/v1/titiler {
52       rewrite ^/api/v1/titiler(.*)$ $1 break;
53       proxy_pass http://localhost:8080;
54       proxy_set_header Host $host;
55       proxy_set_header Referer $http_referer;
56       proxy_set_header X-Forwarded-For $remote_addr;
57       proxy_set_header X-Forwarded-Proto https;
58       proxy_set_header X-Forwarded-SSL on;
59       proxy_http_version 1.1;
60       proxy_set_header Connection "";
61       proxy_redirect off;
62     }
63 }