mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-14 15:14:56 -04:00
Merge pull request #636 from laysdra7265/fix/sslcapath
Fix sslcapath bug
This commit is contained in:
commit
8375544dea
2 changed files with 5 additions and 2 deletions
|
@ -96,7 +96,10 @@ config.isSAMLEnable = config.saml.idpSsoUrl
|
|||
config.isPDFExportEnable = config.allowpdfexport
|
||||
|
||||
// generate correct path
|
||||
config.sslcapath = path.join(appRootPath, config.sslcapath)
|
||||
config.sslcapath.forEach(function (capath, i, array) {
|
||||
array[i] = path.resolve(appRootPath, capath)
|
||||
})
|
||||
|
||||
config.sslcertpath = path.join(appRootPath, config.sslcertpath)
|
||||
config.sslkeypath = path.join(appRootPath, config.sslkeypath)
|
||||
config.dhparampath = path.join(appRootPath, config.dhparampath)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue