TileJSON: Request with 'https', but returns 'http' #969
-
Problem description[this should explain why the current behavior is a problem and why the expected output is a better solution.] When I request a tilejson with 'https', it returns the tiles with 'http'. https://example.com/titiler/cog/tilejson.json?url=... {
"tiles": [
"http://example.com/titiler/cog/tiles/WebMercatorQuad/{z}/{x}/{y}@1x?url=..."
]
} Expected Output{
"tiles": [
"https//example.com/titiler/cog/tiles/WebMercatorQuad/{z}/{x}/{y}@1x?url=..."
]
} Environment InformationDocker imges: ghcr.io/developmentseed/titiler:0.18.5 |
Beta Was this translation helpful? Give feedback.
Answered by
vincentsarago
Aug 27, 2024
Replies: 1 comment
-
This is mostly due to a bad proxy configuration on your deployment |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
huanglii
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is mostly due to a bad proxy configuration on your deployment
#345 #342