From 2539b6e3fbb3313bc9188daa9506dacf935c19db Mon Sep 17 00:00:00 2001 From: Sebastian Kiepsch Date: Tue, 6 Jan 2026 17:38:14 +0100 Subject: [PATCH] allow other hosts --- server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.js b/server.js index b19c358..c8a8310 100644 --- a/server.js +++ b/server.js @@ -13,7 +13,7 @@ app.get('/', (req, res) => { res.send(clientIp); }); -app.listen(PORT, () => { +app.listen(PORT, '0.0.0.0', () => { console.log(`IP Pinger service running on port ${PORT}`); console.log(`Visit http://localhost:${PORT} to see your IP`); });