diff --git a/index.js b/index.js index 5b5ce11..025dc5a 100644 --- a/index.js +++ b/index.js @@ -70,8 +70,7 @@ app.get('/', (req, res) => { res.redirect('/login'); }) const port = process.env.APP_PORT || 8080 -const host = process.env.APP_HOSTNAME || "0.0.0.0" -app.listen(port, host, (err) => { +app.listen(port, (err) => { if (err) { global.log.error(`Cannot start server: ${err}`); process.exit(1);