From 01c436a751871c3aa41f0bc986f4f900b329aaf3 Mon Sep 17 00:00:00 2001 From: Benjamin Date: Mon, 6 Oct 2025 15:34:31 -0500 Subject: [PATCH] specifically allow healthz --- 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 7f31ea48..2488dda4 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" --allow "$ARG_CODER_HOST") + BOUNDARY_ARGS+=(--allow "*.anthropic.com" --allow "registry.npmjs.org" --allow "*.sentry.io" --allow "claude.ai" --allow "localhost:8080/healthz" --allow "$ARG_CODER_HOST") # Add any additional allowed URLs from the variable if [ -n "$ARG_BOUNDARY_ADDITIONAL_ALLOWED_URLS" ]; then