diff options
author | Sheogorath | 2018-03-26 20:15:25 +0200 |
---|---|---|
committer | Sheogorath | 2018-03-26 20:15:45 +0200 |
commit | 4eef661c15d750bb19a1673760ce35330a26091c (patch) | |
tree | 936729abb9c14ba07384c18a8739e58adf6a54bd /lib/config | |
parent | 6a4350af2bc185374671f36970e1aef8b7d9ac93 (diff) |
Rename forgotten values
Looks like we forgot something during the migration. This should fix it.
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
Diffstat (limited to 'lib/config')
-rw-r--r-- | lib/config/defaultSSL.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/config/defaultSSL.js b/lib/config/defaultSSL.js index 362c62a1..ba020466 100644 --- a/lib/config/defaultSSL.js +++ b/lib/config/defaultSSL.js @@ -10,8 +10,8 @@ function getFile (path) { } module.exports = { - sslkeypath: getFile('/run/secrets/key.pem'), - sslcertpath: getFile('/run/secrets/cert.pem'), - sslcapath: getFile('/run/secrets/ca.pem') !== undefined ? [getFile('/run/secrets/ca.pem')] : [], - dhparampath: getFile('/run/secrets/dhparam.pem') + sslKeyPath: getFile('/run/secrets/key.pem'), + sslCertPath: getFile('/run/secrets/cert.pem'), + sslCAPath: getFile('/run/secrets/ca.pem') !== undefined ? [getFile('/run/secrets/ca.pem')] : [], + dhParamPath: getFile('/run/secrets/dhparam.pem') } |