From e57e5f71923d590b71737dc72e004a2f2b2edc88 Mon Sep 17 00:00:00 2001 From: Gabriel Brown Date: Thu, 13 Aug 2026 10:12:11 -0400 Subject: [PATCH] Publish loopback port so the VPS's own agent bypasses the NPM LAN ACL --- docker/compose.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docker/compose.yml b/docker/compose.yml index 29c2738..321ec7b 100644 --- a/docker/compose.yml +++ b/docker/compose.yml @@ -10,6 +10,11 @@ services: hostname: agentchat domainname: agentchat.gbrown.org networks: ['nginx-bridge'] + ports: + # Loopback only: lets this host's own agent reach the hub at + # http://127.0.0.1:8080 without going through NPM - the LAN access + # list there blocks the VPS's public IP. Unreachable from elsewhere. + - '127.0.0.1:8080:8080' environment: - TZ=America/New_York - AGENTCHAT_DB=/data/agentchat.db