mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 17:56:30 -05:00
Fix broken port config
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
This commit is contained in:
parent
eec2318bda
commit
817bb9e639
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ module.exports = {
|
||||||
secretKey: process.env.HMD_MINIO_SECRET_KEY,
|
secretKey: process.env.HMD_MINIO_SECRET_KEY,
|
||||||
endPoint: process.env.HMD_MINIO_ENDPOINT,
|
endPoint: process.env.HMD_MINIO_ENDPOINT,
|
||||||
secure: toBooleanConfig(process.env.HMD_MINIO_SECURE),
|
secure: toBooleanConfig(process.env.HMD_MINIO_SECURE),
|
||||||
port: parseInt(process.env.HMD_MINIO_PORT)
|
port: process.env.HMD_MINIO_PORT
|
||||||
},
|
},
|
||||||
s3bucket: process.env.HMD_S3_BUCKET,
|
s3bucket: process.env.HMD_S3_BUCKET,
|
||||||
facebook: {
|
facebook: {
|
||||||
|
|
Loading…
Reference in a new issue