We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf166e3 commit 7a8222dCopy full SHA for 7a8222d
lib/server/utils.js
@@ -24,7 +24,7 @@ var utils = {
24
key: fs.readFileSync(options.getIn(["https", "key"]) || filePath.join(__dirname, "certs/server.key")),
25
cert: fs.readFileSync(options.getIn(["https", "cert"]) || filePath.join(__dirname, "certs/server.crt")),
26
ca: fs.readFileSync(options.getIn(["https", "ca"]) || filePath.join(__dirname, "certs/server.csr")),
27
- passphrase: options.getIn(["https", "passphrase"]) || ''
+ passphrase: options.getIn(["https", "passphrase"]) || ""
28
};
29
},
30
/**
0 commit comments