diff options
author | Christoph (Sheogorath) Kern | 2018-06-01 12:35:20 +0200 |
---|---|---|
committer | GitHub | 2018-06-01 12:35:20 +0200 |
commit | 65544f9a18a2a418cd88d8fc9f8ee227bd4cf03c (patch) | |
tree | 229e8c05b308452a6741d5436038a213833c2104 /lib/config/default.js | |
parent | ef1097c58dd35a12dbde471c6f33186d72a3916b (diff) | |
parent | 376fcab2ca8a2908187bedec732fc99e1f1950c0 (diff) |
Merge pull request #675 from ahoka/master
Add Azure Blob Storage support
Diffstat (limited to '')
-rw-r--r-- | lib/config/default.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/config/default.js b/lib/config/default.js index 68849d36..30ce2090 100644 --- a/lib/config/default.js +++ b/lib/config/default.js @@ -56,7 +56,7 @@ module.exports = { heartbeatTimeout: 10000, // document documentMaxLength: 100000, - // image upload setting, available options are imgur/s3/filesystem + // image upload setting, available options are imgur/s3/filesystem/azure imageUploadType: 'filesystem', imgur: { clientID: undefined @@ -74,6 +74,10 @@ module.exports = { port: 9000 }, s3bucket: undefined, + azure: { + connectionString: undefined, + container: undefined + }, // authentication facebook: { clientID: undefined, |