Skip to content

Commit bfe7a59

Browse files
committed
chore: Add baseURL configuration option to S3 modules
Signed-off-by: Naoki Fujisawa <[email protected]>
1 parent f00df50 commit bfe7a59

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

lib/config/default.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ module.exports = {
7474
accessKeyId: undefined,
7575
secretAccessKey: undefined,
7676
region: undefined,
77-
endpoint: undefined
77+
endpoint: undefined,
78+
baseURL: undefined
7879
},
7980
minio: {
8081
accessKey: undefined,

lib/config/environment.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ module.exports = {
4444
accessKeyId: process.env.CMD_S3_ACCESS_KEY_ID,
4545
secretAccessKey: process.env.CMD_S3_SECRET_ACCESS_KEY,
4646
region: process.env.CMD_S3_REGION,
47-
endpoint: process.env.CMD_S3_ENDPOINT
47+
endpoint: process.env.CMD_S3_ENDPOINT,
48+
baseURL: process.env.CMD_S3_BASEURL
4849
},
4950
minio: {
5051
accessKey: process.env.CMD_MINIO_ACCESS_KEY,

lib/imageRouter/s3.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,11 @@ exports.uploadImage = function (imagePath, callback) {
5757
if (config.s3.endpoint) {
5858
s3Endpoint = config.s3.endpoint
5959
}
60-
callback(null, `${s3Endpoint}/${config.s3bucket}/${params.Key}`)
60+
if (config.s3.baseURL) {
61+
callback(null, `${config.s3.baseURL}/${params.Key}`)
62+
} else {
63+
callback(null, `${s3Endpoint}/${config.s3bucket}/${params.Key}`)
64+
}
6165
}).catch(err => {
6266
if (err) {
6367
callback(new Error(err), null)

0 commit comments

Comments
 (0)