diff --git a/server.js b/server.js index 3fe0c35..50117aa 100644 --- a/server.js +++ b/server.js @@ -69,6 +69,5 @@ function getFileExtension(filename) { var credentials = { key: privateKey, cert: certificate }; var httpsServer = https.createServer(credentials, app); -httpsServer.listen(443, () => { - console.log(`Server is running on http://localhost:${PORT}`); -}); +httpsServer.listen(443); +console.log("embox Server running on port 443"); \ No newline at end of file