]> git.openstreetmap.org Git - chef.git/blob - cookbooks/imagery/templates/default/nginx_imagery.conf.erb
405949e24ae8bea66b99cdb4f2c0e67af7bff47a
[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     root "/srv/<%= @name %>";
19
20     gzip on;
21     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
22     gzip_min_length 512;
23     gzip_http_version 1.0;
24     gzip_proxied any;
25     gzip_comp_level 9;
26     gzip_vary on;
27
28     sendfile   on;
29     tcp_nopush on;
30
31     # Include site imagery layers
32     include /srv/imagery/nginx/<%= @name %>/layer-*.conf;
33 }