mirror of https://github.com/calzoneman/sync.git
Fix typo in CA file loading
This commit is contained in:
parent
398647974c
commit
9bd984f66b
|
@ -80,7 +80,7 @@ var Server = function () {
|
|||
Config.get("https.certfile")));
|
||||
var ca = undefined;
|
||||
if (Config.get("https.cafile")) {
|
||||
ca = fs.readFileSync(path.resolve(__dirname, "",
|
||||
ca = fs.readFileSync(path.resolve(__dirname, "..",
|
||||
Config.get("https.cafile")));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue