]> git.openstreetmap.org Git - chef.git/blob - cookbooks/imagery/templates/default/nginx_titiler.conf.erb
1ddc39ec8629a4092655926af14e00b65446f9d1
[chef.git] / cookbooks / imagery / templates / default / nginx_titiler.conf.erb
1 server {
2     listen 80;
3     listen [::]:80;
4     server_name <%= @name %> <% @aliases.each do |alias_name| %> <%= 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 http2;
12     listen [::]:443 ssl http2;
13     server_name <%= @name %> <% @aliases.each do |alias_name| %> <%= 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     # Requests sent within early data are subject to replay attacks.
23     # See: http://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_early_data
24     ssl_early_data on;
25
26     # root "/srv/<%= @name %>";
27
28     gzip on;
29     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
30     gzip_min_length 512;
31     gzip_http_version 1.0;
32     gzip_proxied any;
33     gzip_comp_level 9;
34     gzip_vary on;
35
36     location /api/v1/titiler {
37       rewrite ^/api/v1/titiler(.*)$ $1 break;
38       proxy_pass http://localhost:8080;
39       proxy_set_header HOST $host;
40       proxy_set_header Referer $http_referer;
41       proxy_set_header X-Forwarded-For $remote_addr;
42       proxy_set_header X-Forwarded-Proto $scheme;
43       proxy_redirect off;
44     }
45 }