From 08c03d029c0928f238820bc321a9de000384ee8a Mon Sep 17 00:00:00 2001 From: Josh Harvey Date: Thu, 9 Jun 2016 18:50:36 +0300 Subject: [PATCH] changed certKey to certKeyPath --- bin/lamassu-server | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/lamassu-server b/bin/lamassu-server index b640d222..42716627 100755 --- a/bin/lamassu-server +++ b/bin/lamassu-server @@ -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) } }