From 9796e05fdc0d34259bd220a36a68c34c6ea2a75d Mon Sep 17 00:00:00 2001 From: Benjamin Date: Mon, 6 Oct 2025 15:21:35 -0500 Subject: [PATCH] allow localhost for healthz and other reporting --- 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 9f1fd0a2..7f31ea48 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 "$ARG_CODER_HOST") + BOUNDARY_ARGS+=(--allow "*.anthropic.com" --allow "registry.npmjs.org" --allow "*.sentry.io" --allow "claude.ai" --allow "localhost" --allow "$ARG_CODER_HOST") # Add any additional allowed URLs from the variable if [ -n "$ARG_BOUNDARY_ADDITIONAL_ALLOWED_URLS" ]; then