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