From 7ba975a2d890dbc56ba54c066c28f6f2d774cbee Mon Sep 17 00:00:00 2001 From: Benjamin Date: Mon, 6 Oct 2025 17:12:08 -0500 Subject: [PATCH] remove the localhost allowance, going to fix on the boundary side of things --- registry/coder/modules/claude-code/scripts/start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/registry/coder/modules/claude-code/scripts/start.sh b/registry/coder/modules/claude-code/scripts/start.sh index f5644744..195730cc 100644 --- a/registry/coder/modules/claude-code/scripts/start.sh +++ b/registry/coder/modules/claude-code/scripts/start.sh @@ -93,7 +93,7 @@ function start_agentapi() { BOUNDARY_ARGS+=(--unprivileged) fi # Add default allowed URLs - BOUNDARY_ARGS+=(--allow "*.anthropic.com" --allow "registry.npmjs.org" --allow "*.sentry.io" --allow "claude.ai" --allow "localhost:8080" --allow "$ARG_CODER_HOST") + BOUNDARY_ARGS+=(--allow "*.anthropic.com" --allow "registry.npmjs.org" --allow "*.sentry.io" --allow "claude.ai" --allow "$ARG_CODER_HOST") # Add any additional allowed URLs from the variable if [ -n "$ARG_BOUNDARY_ADDITIONAL_ALLOWED_URLS" ]; then