diff options
author | Christoph (Sheogorath) Kern | 2018-01-23 12:09:41 +0100 |
---|---|---|
committer | GitHub | 2018-01-23 12:09:41 +0100 |
commit | e0389bc4cf21da4dac0f42b9f2a6d3cdf5b0d669 (patch) | |
tree | 7b59a59892ede619ee1451c7f3146adffeb07a42 /lib/config/environment.js | |
parent | eec2318bda29f6633f9c9b4198e507959fa12d46 (diff) | |
parent | 817bb9e639dd7e4fb3844971c7df49eb671e4304 (diff) |
Merge pull request #697 from SISheogorath/fix/minio
Fix broken port config
Diffstat (limited to 'lib/config/environment.js')
-rw-r--r-- | lib/config/environment.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/config/environment.js b/lib/config/environment.js index 932363da..e2112b6a 100644 --- a/lib/config/environment.js +++ b/lib/config/environment.js @@ -39,7 +39,7 @@ module.exports = { secretKey: process.env.HMD_MINIO_SECRET_KEY, endPoint: process.env.HMD_MINIO_ENDPOINT, 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, facebook: { |