fix(openclaw): bypass device pairing requirement

- Change gateway auth mode from "none" to "token", as "none" is no longer supported and enforces device pairing.
- Provide a static OPENCLAW_GATEWAY_TOKEN in the environment to allow local subagents to bypass pairing automatically.
This commit is contained in:
ashisgreat22 2026-03-20 21:49:17 +01:00
parent 562ec5526c
commit 262887e5ea
2 changed files with 2 additions and 1 deletions

View file

@ -4,7 +4,7 @@
"bind": "loopback",
"trustedProxies": ["::1", "127.0.0.1", "10.88.0.0/16", "10.89.0.0/16"],
"auth": {
"mode": "none"
"mode": "token"
},
"controlUi": {
"dangerouslyAllowHostHeaderOriginFallback": true,