]> git.openstreetmap.org Git - chef.git/blob - cookbooks/imagery/templates/default/nginx_imagery.conf.erb
Merge remote-tracking branch 'github/pull/678'
[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 <%= @name %>_tiler_backend {
12     server unix:/srv/imagery/sockets/titiler.sock max_fails=0;
13 }
14 <% else -%>
15 upstream <%= @name %>_fastcgi {
16     server "unix:/var/run/mapserver-fastcgi/layer-<%= @name %>.socket" max_fails=0;
17
18     # Use default round-robin to distribute requests, rather than pick "fast" but maybe faulty.
19     # Do not use keepalive
20 }
21 <% end -%>
22
23 server {
24     listen 443 ssl http2;
25     listen [::]:443 ssl http2;
26     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 -%>;
27
28     http2_max_concurrent_streams 512;
29     keepalive_timeout 30s;
30
31     ssl_certificate /etc/ssl/certs/<%= @name %>.pem;
32     ssl_certificate_key /etc/ssl/private/<%= @name %>.key;
33 <% if node[:ssl][:strict_transport_security] -%>
34
35     add_header Strict-Transport-Security "<%= node[:ssl][:strict_transport_security] %>" always;
36 <% end -%>
37
38     # Requests sent within early data are subject to replay attacks.
39     # See: http://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_early_data
40     ssl_early_data on;
41
42     root "/srv/<%= @name %>";
43
44     gzip on;
45     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
46     gzip_min_length 512;
47     gzip_http_version 1.0;
48     gzip_proxied any;
49     gzip_comp_level 9;
50     gzip_vary on;
51
52     # Include site imagery layers
53     include /srv/imagery/nginx/<%= @name %>/layer-*.conf;
54 }