From 2ade113c2a81d1b1344adc1d08920beafcf5e22b Mon Sep 17 00:00:00 2001 From: TOBB Date: Mon, 5 May 2025 23:36:06 +0800 Subject: [PATCH] refactor(index.mjs): change listen ip to 0/32 Make server listen on all network interfaces Allow external connections by binding to 0.0.0.0 instead of localhost only --- index.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.mjs b/index.mjs index 67bfa57..2b504f4 100644 --- a/index.mjs +++ b/index.mjs @@ -323,7 +323,7 @@ async function initializeClaudeConfig() { async function run() { await initializeClaudeConfig(); - app.listen(port, "127.0.0.1", () => { + app.listen(port, "0.0.0.0", () => { console.log(`Example app listening on port ${port}`); }); }