Fix https

This commit is contained in:
Maciej Małecki 2014-04-11 05:08:38 +02:00
parent c245c528f0
commit 818f48398c
2 changed files with 2 additions and 1 deletions

View file

@ -1,4 +1,5 @@
#!/usr/bin/env node
var fs = require('fs');
var createServer = require('../lib/app.js');
var argv = require('optimist').argv;

View file

@ -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) {