add logs for when the server is ready

This commit is contained in:
Mystikfluu 2022-07-24 19:18:32 +02:00
parent 9557dd89b1
commit f7725497eb

View File

@ -1065,7 +1065,9 @@ router.post("/login",async function(req,res) {
app.use(router) app.use(router)
const httpServer = http.createServer(app); const httpServer = http.createServer(app);
httpServer.listen(config["ports"]["http"]); httpServer.listen(config["ports"]["http"],function(){
console.log(5,"HTTP Server is listening")
});
const privateKey = fs.readFileSync(config["ssl"]["privateKey"]).toString() const privateKey = fs.readFileSync(config["ssl"]["privateKey"]).toString()
const certificate = fs.readFileSync(config["ssl"]["certificate"]).toString() const certificate = fs.readFileSync(config["ssl"]["certificate"]).toString()
@ -1075,7 +1077,9 @@ const credentials = {key: privateKey, cert: certificate};
var httpsServer var httpsServer
if(DID_I_FINALLY_ADD_HTTPS) { if(DID_I_FINALLY_ADD_HTTPS) {
httpsServer = https.createServer(credentials, app); httpsServer = https.createServer(credentials, app);
httpsServer.listen(config["ports"]["https"]); httpsServer.listen(config["ports"]["https"],function(){
console.log(5,"HTTPS Server is listening")
});
} else { } else {
httpsServer = httpServer httpsServer = httpServer
} }