mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-06-12 07:34:41 +02:00
Fix route handling for HTTPS
This commit is contained in:
parent
64aa63e8b5
commit
7c81cbed51
1 changed files with 1 additions and 1 deletions
|
@ -116,7 +116,7 @@ exports.getModule = class WebServerModule extends ServerModule {
|
||||||
// additional options
|
// additional options
|
||||||
Object.assign(options, Config.contentServers.web.https.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) );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue