]> git.openstreetmap.org Git - chef.git/blob - cookbooks/imagery/templates/default/nginx_imagery.conf.erb
Update to leaflet 1.3.0
[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 server {
11     listen [::]:443 ssl;
12     listen *:443 ssl;
13     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 -%>;
14
15     ssl_certificate /etc/ssl/certs/<%= @name %>.pem;
16     ssl_certificate_key /etc/ssl/private/<%= @name %>.key;
17
18     ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
19     ssl_ciphers <%= node[:ssl][:ciphers] -%>;
20     ssl_prefer_server_ciphers on;
21     ssl_session_cache shared:SSL:50m;
22     ssl_session_timeout 30m;
23     ssl_stapling on;
24     ssl_dhparam /etc/ssl/certs/dhparam.pem;
25     resolver <%= @resolvers.join(" ") %>;
26     resolver_timeout 5s;
27
28     root "/srv/<%= @name %>";
29
30     gzip on;
31     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
32     gzip_min_length 512;
33     gzip_http_version 1.0;
34     gzip_proxied any;
35     gzip_comp_level 9;
36     gzip_vary on;
37
38     sendfile   on;
39     tcp_nopush on;
40
41     # Include site imagery layers
42     include /srv/imagery/nginx/<%= @name %>/layer-*.conf;
43 }