]> git.openstreetmap.org Git - chef.git/blob - cookbooks/imagery/templates/default/nginx_imagery.conf.erb
ec8a7ca312fe815f475bcf44d94b8fe65afa4592
[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 <% if node[:ssl][:strict_transport_security] -%>
18
19     add_header Strict-Transport-Security "<%= node[:ssl][:strict_transport_security] %>" always;
20 <% end -%>
21
22     root "/srv/<%= @name %>";
23
24     gzip on;
25     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
26     gzip_min_length 512;
27     gzip_http_version 1.0;
28     gzip_proxied any;
29     gzip_comp_level 9;
30     gzip_vary on;
31
32     sendfile   on;
33     tcp_nopush on;
34
35     # Include site imagery layers
36     include /srv/imagery/nginx/<%= @name %>/layer-*.conf;
37 }