summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSheogorath2019-08-10 08:52:24 +0200
committerSheogorath2019-08-15 23:14:53 +0200
commitc07ae7eda1b02203fc48783256b2b1881a587cb4 (patch)
treebf9d133da9562dc93c137d2eff44490c28d1de87 /lib
parentc4053ea7ce359ec03773763fbf3fcb2be192778b (diff)
Fix variable names for docker secrets
It seems like since we switched to camelcase we missed to update some variable names in the config section. This patch fixes those. Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/config/dockerSecret.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/config/dockerSecret.js b/lib/config/dockerSecret.js
index 3a6910f4..50bf7fe2 100644
--- a/lib/config/dockerSecret.js
+++ b/lib/config/dockerSecret.js
@@ -14,11 +14,11 @@ function getSecret (secret) {
if (fs.existsSync(basePath)) {
module.exports = {
dbURL: getSecret('dbURL'),
- sessionsecret: getSecret('sessionsecret'),
- sslkeypath: getSecret('sslkeypath'),
- sslcertpath: getSecret('sslcertpath'),
- sslcapath: getSecret('sslcapath'),
- dhparampath: getSecret('dhparampath'),
+ sessionSecret: getSecret('sessionsecret'),
+ sslKeyPath: getSecret('sslkeypath'),
+ sslCertPath: getSecret('sslcertpath'),
+ sslCAPath: getSecret('sslcapath'),
+ dhParamPath: getSecret('dhparampath'),
s3: {
accessKeyId: getSecret('s3_acccessKeyId'),
secretAccessKey: getSecret('s3_secretAccessKey')