feat: handle the X-Forwarded-Path header (#1197)
* feat: handle the X-Forwarded-Path header * fix: lint Signed-off-by: acalcutt <acalcutt@techidiots.net> --------- Signed-off-by: acalcutt <acalcutt@techidiots.net> Co-authored-by: Zsolt Jakubinyi <zsolt.jakubinyi@beamtrail.com> Co-authored-by: acalcutt <acalcutt@techidiots.net>
This commit is contained in:
parent
366f71ca44
commit
bff699ba4a
1 changed files with 2 additions and 1 deletions
|
@ -114,9 +114,10 @@ export const getTileUrls = (
|
|||
|
||||
const uris = [];
|
||||
if (!publicUrl) {
|
||||
let xForwardedPath = `${req.get('X-Forwarded-Path') ? '/' + req.get('X-Forwarded-Path') : ''}`;
|
||||
for (const domain of domains) {
|
||||
uris.push(
|
||||
`${req.protocol}://${domain}/${path}/${tileParams}.${format}${query}`,
|
||||
`${req.protocol}://${domain}${xForwardedPath}/${path}/${tileParams}.${format}${query}`,
|
||||
);
|
||||
}
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue