mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-16 16:14:43 -04:00
fixed sslcapath bug
This commit is contained in:
parent
8112cd6fef
commit
9949795533
2 changed files with 10 additions and 2 deletions
|
@ -12,6 +12,6 @@ function getFile (path) {
|
|||
module.exports = {
|
||||
sslkeypath: getFile('/run/secrets/key.pem'),
|
||||
sslcertpath: getFile('/run/secrets/cert.pem'),
|
||||
sslcapath: getFile('/run/secrets/ca.pem'),
|
||||
sslcapath: getFile('/run/secrets/ca.pem') !== undefined ? [getFile('/run/secrets/ca.pem')] : [],
|
||||
dhparampath: getFile('/run/secrets/dhparam.pem')
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue