mirror of https://github.com/status-im/codimd.git
Rename forgotten values
Looks like we forgot something during the migration. This should fix it. Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
This commit is contained in:
parent
6a4350af2b
commit
4eef661c15
|
@ -10,8 +10,8 @@ function getFile (path) {
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
sslkeypath: getFile('/run/secrets/key.pem'),
|
sslKeyPath: getFile('/run/secrets/key.pem'),
|
||||||
sslcertpath: getFile('/run/secrets/cert.pem'),
|
sslCertPath: getFile('/run/secrets/cert.pem'),
|
||||||
sslcapath: getFile('/run/secrets/ca.pem') !== undefined ? [getFile('/run/secrets/ca.pem')] : [],
|
sslCAPath: getFile('/run/secrets/ca.pem') !== undefined ? [getFile('/run/secrets/ca.pem')] : [],
|
||||||
dhparampath: getFile('/run/secrets/dhparam.pem')
|
dhParamPath: getFile('/run/secrets/dhparam.pem')
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue