changed certKey to certKeyPath

This commit is contained in:
Josh Harvey 2016-06-09 18:50:36 +03:00
parent 3efd0dc001
commit 08c03d029c

View file

@ -25,7 +25,7 @@ var port = process.env.PORT || 3000
if (!argv.http) {
options.https = {
key: fs.readFileSync(options.certKey),
key: fs.readFileSync(options.certKeyPath),
cert: fs.readFileSync(options.certPath)
}
}