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";
18 upstream tiler_backend {
19 server 127.0.0.1:8080;
24 proxy_cache_path /var/cache/nginx-cache levels=1:2 keys_zone=ngi-aerial:64m;
28 listen [::]:443 ssl http2;
29 server_name <%= @name %> <% @aliases.each do |alias_name| %> <%= alias_name %><%- end -%>;
31 ssl_certificate /etc/ssl/certs/<%= @name %>.pem;
32 ssl_certificate_key /etc/ssl/private/<%= @name %>.key;
33 <% if node[:ssl][:strict_transport_security] -%>
35 add_header Strict-Transport-Security "<%= node[:ssl][:strict_transport_security] %>" always;
38 # Requests sent within early data are subject to replay attacks.
39 # See: http://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_early_data
42 # root "/srv/<%= @name %>";
45 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
47 gzip_http_version 1.0;
53 root "/store/imagery/za";
57 location /api/v1/titiler {
58 rewrite ^/api/v1/titiler(.*)$ $1 break;
59 proxy_pass http://localhost:8080;
60 proxy_set_header Host $host;
61 proxy_set_header Referer $http_referer;
62 proxy_set_header X-Forwarded-For $remote_addr;
63 proxy_set_header X-Forwarded-Proto https;
64 proxy_set_header X-Forwarded-SSL on;
65 proxy_http_version 1.1;
69 location /ngi-aerial {
71 rewrite ^/ngi-aerial/(\d+)/(\d+)/(\d+)\.jpg /mosaicjson/tiles/WebMercatorQuad/$1/$2/$3@1x?url=http%3A%2F%2Ftiler.openstreetmap.org%2Fza-25cm%2Fmosaic-tiler.json&pixel_selection=first&tile_format=jpeg break;
72 proxy_pass http://tiler_backend;
73 proxy_set_header Host $host;
74 proxy_set_header Referer $http_referer;
75 proxy_set_header X-Forwarded-For $remote_addr;
76 proxy_set_header X-Forwarded-Proto https;
77 proxy_set_header X-Forwarded-SSL on;
78 proxy_http_version 1.1;
80 proxy_cache_key "$scheme$proxy_host$uri";
81 proxy_cache ngi-aerial;
82 proxy_cache_valid any 90d;