mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-13 22:54:42 -04:00
Merge pull request #32 from codimd/aws-endpoints
make aws s3 endpoint configurable
This commit is contained in:
commit
2e627099d8
2 changed files with 5 additions and 2 deletions
|
@ -43,7 +43,9 @@ exports.uploadImage = function (imagePath, callback) {
|
|||
}
|
||||
|
||||
let s3Endpoint = 's3.amazonaws.com'
|
||||
if (config.s3.region && config.s3.region !== 'us-east-1') {
|
||||
if (config.s3.endpoint) {
|
||||
s3Endpoint = config.s3.endpoint
|
||||
} else if (config.s3.region && config.s3.region !== 'us-east-1') {
|
||||
s3Endpoint = `s3-${config.s3.region}.amazonaws.com`
|
||||
}
|
||||
callback(null, `https://${s3Endpoint}/${config.s3bucket}/${params.Key}`)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue