From bc18813316485b7d313d2adf5978e8ac40ec33bf Mon Sep 17 00:00:00 2001 From: Ojus Save Date: Sun, 25 Jan 2026 23:35:48 -0800 Subject: [PATCH] fix(render): use password auth for browser access --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0c6660edc..f4038d5fb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,5 +33,5 @@ RUN pnpm ui:build ENV NODE_ENV=production # Run the gateway with settings suitable for Render deployment -# Token auth uses CLAWDBOT_GATEWAY_TOKEN env var set in render.yaml -CMD ["node", "dist/index.js", "gateway", "--port", "8080", "--bind", "lan", "--auth", "token", "--allow-unconfigured"] +# Password auth allows browser-based login via SETUP_PASSWORD env var +CMD ["node", "dist/index.js", "gateway", "--port", "8080", "--bind", "lan", "--auth", "password", "--allow-unconfigured"]