diff --git a/index.js b/index.js index d59986d..8e7982e 100644 --- a/index.js +++ b/index.js @@ -193,6 +193,10 @@ app.get("/api/users/:_id/logs", (req, res) => { }); }); -const listener = app.listen(PORT, () => { - console.log("Your app is listening on port " + listener.address().port); +const listener = app.listen(PORT, "0.0.0.0" () => { + console.log( + `Your app is listening on interface ${ + listener.address().address + } and port ${listener.address().port}` + ); });