diff --git a/server.js b/server.js index d31783c..f8c893f 100644 --- a/server.js +++ b/server.js @@ -26,7 +26,7 @@ socketHandler(io); startQueueWorker(io); const PORT = process.env.PORT || 3000; -server.listen(PORT, '0.0.0.0',() => { - console.log(`Server is running on http://0.0.0.0:${PORT}`); +server.listen(PORT, () => { + console.log(`Server is running on http://localhost:${PORT}`); });