diff --git a/index.js b/index.js index 55f1142..622982b 100644 --- a/index.js +++ b/index.js @@ -23,6 +23,6 @@ app.post("/api/fileanalyse", upload.single("upfile"), (req, res) => { }); }); -app.listen(PORT, function () { - console.log("Your app is listening on port " + PORT); +app.listen(PORT, "0.0.0.0", function () { + console.log('Your app is listening on interface "0.0.0.0" and port ' + PORT); });