Merge from master

This commit is contained in:
Bryan Ashby 2017-07-23 13:05:28 -06:00
commit 429e03185c
5 changed files with 285 additions and 19 deletions

View file

@ -116,7 +116,7 @@ exports.getModule = class WebServerModule extends ServerModule {
// additional options
Object.assign(options, Config.contentServers.web.https.options || {} );
this.httpsServer = https.createServer(options, this.routeRequest);
this.httpsServer = https.createServer(options, (req, resp) => this.routeRequest(req, resp) );
}
}