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