From 818f48398c7fd305153b10ca9fa21f12f011d613 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Ma=C5=82ecki?= Date: Fri, 11 Apr 2014 05:08:38 +0200 Subject: [PATCH] Fix https --- bin/lamassu-server | 1 + lib/app.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/lamassu-server b/bin/lamassu-server index 12f6aebe..86bc13d0 100755 --- a/bin/lamassu-server +++ b/bin/lamassu-server @@ -1,4 +1,5 @@ #!/usr/bin/env node +var fs = require('fs'); var createServer = require('../lib/app.js'); var argv = require('optimist').argv; diff --git a/lib/app.js b/lib/app.js index ad6dc169..24a8fff5 100755 --- a/lib/app.js +++ b/lib/app.js @@ -54,7 +54,7 @@ module.exports = function (options) { honorCipherOrder: true }; - server = https.createServer(options, app); + server = https.createServer(serverOptions, app); } config.load(function(err, conf) {