allow other hosts

This commit is contained in:
Sebastian Kiepsch
2026-01-06 17:38:14 +01:00
parent 0703ae53e7
commit 2539b6e3fb
+1 -1
View File
@@ -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`);
});