From 7f24ca4079df5c97cc57c3e3a8e806c9fbaa0323 Mon Sep 17 00:00:00 2001 From: Giuseppe Raffa <77052701+sesee3@users.noreply.github.com> Date: Sat, 28 Mar 2026 17:08:37 +0100 Subject: [PATCH] fix: bind server to 0.0.0.0 to allow external network access --- api/src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/index.js b/api/src/index.js index 20604ff..74867e0 100644 --- a/api/src/index.js +++ b/api/src/index.js @@ -68,6 +68,6 @@ const paramsRoutes = require('./routes/params') app.use('/params', paramsRoutes) // Avvio del server -app.listen(PORT, () => { +app.listen(PORT, '0.0.0.0', () => { console.log(`Started on port ${PORT}`); });