4 server_name <%= @name %> <% @aliases.each do |alias_name| %> <%= alias_name %><%- end -%>;
6 rewrite ^/\.well-known/acme-challenge/(.*)$ http://acme.openstreetmap.org/.well-known/acme-challenge/$1 permanent;
9 return 301 https://$host$request_uri;
13 root "/store/imagery/za";
20 listen [::]:443 ssl http2;
21 server_name <%= @name %> <% @aliases.each do |alias_name| %> <%= alias_name %><%- end -%>;
23 http2_max_concurrent_streams 512;
24 keepalive_timeout 30s;
26 ssl_certificate /etc/ssl/certs/<%= @name %>.pem;
27 ssl_certificate_key /etc/ssl/private/<%= @name %>.key;
28 <% if node[:ssl][:strict_transport_security] -%>
30 add_header Strict-Transport-Security "<%= node[:ssl][:strict_transport_security] %>" always;
33 # Requests sent within early data are subject to replay attacks.
34 # See: http://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_early_data
37 # root "/srv/<%= @name %>";
40 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
42 gzip_http_version 1.0;
47 location /api/v1/titiler {
48 rewrite ^/api/v1/titiler(.*)$ $1 break;
49 proxy_pass http://localhost:8080;
50 proxy_set_header Host $host;
51 proxy_set_header Referer $http_referer;
52 proxy_set_header X-Forwarded-For $remote_addr;
53 proxy_set_header X-Forwarded-Proto https;
54 proxy_set_header X-Forwarded-SSL on;
55 proxy_http_version 1.1;
56 proxy_set_header Connection "";