summaryrefslogtreecommitdiff
path: root/lib/config/defaultSSL.js
diff options
context:
space:
mode:
authorChristoph (Sheogorath) Kern2018-03-27 19:38:21 +0200
committerGitHub2018-03-27 19:38:21 +0200
commit1649a9b74246aa830a024b18a4ad00661e23f785 (patch)
tree556245f9a4d120d9922108583fe717f370902994 /lib/config/defaultSSL.js
parent2d1dc881b8f470d3966cd1ae7744f5f9861e3acc (diff)
parent10a81e7db247ae70f589c6008d0c99da3881201c (diff)
Merge pull request #786 from SISheogorath/fix/compatiblityConfig
Fix some issues with legacy config compatiblity
Diffstat (limited to '')
-rw-r--r--lib/config/defaultSSL.js8
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')
}