diff --git a/index.js b/index.js index 0790c9c..75af835 100644 --- a/index.js +++ b/index.js @@ -148,6 +148,6 @@ app.get("/api/shorturl/:shorturl", (req, res) => { ); }); -app.listen(port, function () { - console.log(`Listening on port ${port}`); +app.listen(port, "0.0.0.0", function () { + console.log(`Listening on interface "0.0.0.0" and port ${port}`); });