]> git.openstreetmap.org Git - chef.git/commitdiff
imagery: move tiler api url
authorGrant Slater <github@firefishy.com>
Tue, 9 Jan 2024 18:06:26 +0000 (18:06 +0000)
committerGrant Slater <github@firefishy.com>
Tue, 9 Jan 2024 18:06:26 +0000 (18:06 +0000)
cookbooks/imagery/templates/default/nginx_titiler.conf.erb

index 85961b8cf252cb1c6c1638fff857c22ec82dbb36..2ce67a36b0582e227751231f4979675db482975a 100644 (file)
@@ -33,12 +33,12 @@ server {
     gzip_comp_level 9;
     gzip_vary on;
 
-    location / {
+    location /api/v1/titiler {
       rewrite ^/api/v1/titiler(.*)$ $1 break;
       proxy_pass http://localhost:8080;
       proxy_set_header HOST $host;
       proxy_set_header Referer $http_referer;
       proxy_set_header X-Forwarded-For $remote_addr;
-      proxy_set_header X-Forwarded-Proto https;
+      proxy_set_header X-Forwarded-Proto $scheme;
     }
 }