]> git.openstreetmap.org Git - chef.git/blob - cookbooks/imagery/templates/default/nginx_imagery.conf.erb
imagery: increase http2 max concurrent streams
[chef.git] / cookbooks / imagery / templates / default / nginx_imagery.conf.erb
1 server {
2     listen 80;
3     listen [::]:80;
4     server_name <%= @name %> a.<%= @name %> b.<%= @name %> c.<%= @name %><% @aliases.each do |alias_name| %> <%= alias_name %> a.<%= alias_name %> b.<%= alias_name %> c.<%= alias_name %><%- end -%>;
5
6     rewrite ^/\.well-known/acme-challenge/(.*)$ http://acme.openstreetmap.org/.well-known/acme-challenge/$1 permanent;
7     return 301 https://$host$request_uri;
8 }
9
10 <% if @uses_tiler -%>
11 upstream tiler_backend {
12     server 127.0.0.1:8080;
13
14     keepalive 32;
15 }
16 <% else -%>
17 upstream <%= @name %>_fastcgi {
18     server "unix:/var/run/mapserver-fastcgi/layer-<%= @name %>.socket" max_fails=0;
19
20     # Use default round-robin to distribute requests, rather than pick "fast" but maybe faulty.
21     # Do not use keepalive
22 }
23 <% end -%>
24
25 server {
26     listen 443 ssl http2;
27     listen [::]:443 ssl http2;
28     server_name <%= @name %> a.<%= @name %> b.<%= @name %> c.<%= @name %><% @aliases.each do |alias_name| %> <%= alias_name %> a.<%= alias_name %> b.<%= alias_name %> c.<%= alias_name %><%- end -%>;
29
30     http2_max_concurrent_streams 512;
31
32     ssl_certificate /etc/ssl/certs/<%= @name %>.pem;
33     ssl_certificate_key /etc/ssl/private/<%= @name %>.key;
34 <% if node[:ssl][:strict_transport_security] -%>
35
36     add_header Strict-Transport-Security "<%= node[:ssl][:strict_transport_security] %>" always;
37 <% end -%>
38
39     # Requests sent within early data are subject to replay attacks.
40     # See: http://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_early_data
41     ssl_early_data on;
42
43     root "/srv/<%= @name %>";
44
45     gzip on;
46     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
47     gzip_min_length 512;
48     gzip_http_version 1.0;
49     gzip_proxied any;
50     gzip_comp_level 9;
51     gzip_vary on;
52
53     # Include site imagery layers
54     include /srv/imagery/nginx/<%= @name %>/layer-*.conf;
55 }