summaryrefslogtreecommitdiff
path: root/lib/web/imageRouter/minio.js
diff options
context:
space:
mode:
authorThor772018-12-11 22:23:57 +0100
committerSheogorath2019-04-06 13:52:49 +0200
commit022c7ad61640f15bd436ed7b868fa2e305175ede (patch)
tree9f953eede02fe0d6d41553a9927af7ca61c48b93 /lib/web/imageRouter/minio.js
parentee725dc58c89f1d9662f14a791a34cc93e2409ff (diff)
Hide port from minio URL for protocol default port
Signed-off-by: Thor77 <thor77@thor77.org>
Diffstat (limited to '')
-rw-r--r--lib/web/imageRouter/minio.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/web/imageRouter/minio.js b/lib/web/imageRouter/minio.js
index b921c2d2..1d993a45 100644
--- a/lib/web/imageRouter/minio.js
+++ b/lib/web/imageRouter/minio.js
@@ -40,7 +40,9 @@ exports.uploadImage = function (imagePath, callback) {
callback(new Error(err), null)
return
}
- callback(null, `${protocol}://${config.minio.endPoint}:${config.minio.port}/${config.s3bucket}/${key}`)
+ let hidePort = [80, 443].includes(config.minio.port)
+ let urlPort = hidePort ? '' : `:${config.minio.port}`
+ callback(null, `${protocol}://${config.minio.endPoint}${urlPort}/${config.s3bucket}/${key}`)
})
})
}