From 4e2e0c9c5f5d314e0fd77c076c6e32c4b27616d4 Mon Sep 17 00:00:00 2001 From: Corey Johnson Date: Tue, 10 Mar 2026 17:34:07 -0700 Subject: [PATCH] Listen on 0.0.0.0 to ensure IPv4 connectivity tronbyt.toes.local resolves to an IPv4 address while toes.local uses IPv6, so the toes proxy couldn't reach the Bun server. Co-Authored-By: Claude Opus 4.6 --- src/server.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/server.ts b/src/server.ts index 9cbb65d..1e98369 100644 --- a/src/server.ts +++ b/src/server.ts @@ -70,6 +70,7 @@ const websocket = { const server = Bun.serve({ port: PORT, + hostname: '0.0.0.0', idleTimeout: 255, fetch(req, server) {