Trusted Proxy Auth
Trusted Proxy Auth
Section titled “Trusted Proxy Auth”⚠️ Security-sensitive feature. This mode delegates authentication entirely to your reverse proxy. Misconfiguration can expose your Gateway to unauthorized access. Read this page carefully before enabling.
When to Use
Section titled “When to Use”Use trusted-proxy auth mode when:
- You run OpenClaw behind an identity-aware proxy (Pomerium, Caddy + OAuth, nginx + oauth2-proxy, Traefik + forward auth)
- Your proxy handles all authentication and passes user identity via headers
- You’re in a Kubernetes or container environment where the proxy is the only path to the Gateway
- You’re hitting WebSocket
1008 unauthorizederrors because browsers can’t pass tokens in WS payloads
When NOT to Use
Section titled “When NOT to Use”- If your proxy doesn’t authenticate users (just a TLS terminator or load balancer)
- If there’s any path to the Gateway that bypasses the proxy (firewall holes, internal network access)
- If you’re unsure whether your proxy correctly strips/overwrites forwarded headers
- If you only need personal single-user access (consider Tailscale Serve + loopback for simpler setup)
How It Works
Section titled “How It Works”- Your reverse proxy authenticates users (OAuth, OIDC, SAML, etc.)
- Proxy adds a header with the authenticated user identity (e.g.,
x-forwarded-user: [email protected]) - OpenClaw checks that the request came from a trusted proxy IP (configured in
gateway.trustedProxies) - OpenClaw extracts the user identity from the configured header
- If everything checks out, the request is authorized
Control UI Pairing Behavior
Section titled “Control UI Pairing Behavior”When gateway.auth.mode = "trusted-proxy" is active and the request passes
trusted-proxy checks, Control UI WebSocket sessions can connect without device
pairing identity.
Implications:
- Pairing is no longer the primary gate for Control UI access in this mode.
- Your reverse proxy auth policy and
allowUsersbecome the effective access control. - Keep gateway ingress locked to trusted proxy IPs only (
gateway.trustedProxies+ firewall).
Configuration
Section titled “Configuration”{ gateway: { // Use loopback for same-host proxy setups; use lan/custom for remote proxy hosts bind: "loopback",
// CRITICAL: Only add your proxy's IP(s) here trustedProxies: ["10.0.0.1", "172.17.0.1"],
auth: { mode: "trusted-proxy", trustedProxy: { // Header containing authenticated user identity (required) userHeader: "x-forwarded-user",
// Optional: headers that MUST be present (proxy verification) requiredHeaders: ["x-forwarded-proto", "x-forwarded-host"],
// Optional: restrict to specific users (empty = allow all) }, }, },}If gateway.bind is loopback, include a loopback proxy address in
gateway.trustedProxies (127.0.0.1, ::1, or an equivalent loopback CIDR).
Configuration Reference
Section titled “Configuration Reference”| Field | Required | Description |
|---|---|---|
gateway.trustedProxies | Yes | Array of proxy IP addresses to trust. Requests from other IPs are rejected. |
gateway.auth.mode | Yes | Must be "trusted-proxy" |
gateway.auth.trustedProxy.userHeader | Yes | Header name containing the authenticated user identity |
gateway.auth.trustedProxy.requiredHeaders | No | Additional headers that must be present for the request to be trusted |
gateway.auth.trustedProxy.allowUsers | No | Allowlist of user identities. Empty means allow all authenticated users. |
TLS termination and HSTS
Section titled “TLS termination and HSTS”Use one TLS termination point and apply HSTS there.
Recommended pattern: proxy TLS termination
Section titled “Recommended pattern: proxy TLS termination”When your reverse proxy handles HTTPS for https://control.example.com, set
Strict-Transport-Security at the proxy for that domain.
- Good fit for internet-facing deployments.
- Keeps certificate + HTTP hardening policy in one place.
- OpenClaw can stay on loopback HTTP behind the proxy.
Example header value:
Strict-Transport-Security: max-age=31536000; includeSubDomainsGateway TLS termination
Section titled “Gateway TLS termination”If OpenClaw itself serves HTTPS directly (no TLS-terminating proxy), set:
{ gateway: { tls: { enabled: true }, http: { securityHeaders: { strictTransportSecurity: "max-age=31536000; includeSubDomains", }, }, },}strictTransportSecurity accepts a string header value, or false to disable explicitly.
Rollout guidance
Section titled “Rollout guidance”- Start with a short max age first (for example
max-age=300) while validating traffic. - Increase to long-lived values (for example
max-age=31536000) only after confidence is high. - Add
includeSubDomainsonly if every subdomain is HTTPS-ready. - Use preload only if you intentionally meet preload requirements for your full domain set.
- Loopback-only local development does not benefit from HSTS.
Proxy Setup Examples
Section titled “Proxy Setup Examples”Pomerium
Section titled “Pomerium”Pomerium passes identity in x-pomerium-claim-email (or other claim headers) and a JWT in x-pomerium-jwt-assertion.
{ gateway: { bind: "lan", trustedProxies: ["10.0.0.1"], // Pomerium's IP auth: { mode: "trusted-proxy", trustedProxy: { userHeader: "x-pomerium-claim-email", requiredHeaders: ["x-pomerium-jwt-assertion"], }, }, },}Pomerium config snippet:
routes: - from: https://openclaw.example.com to: http://openclaw-gateway:18789 policy: - allow: or: - email: pass_identity_headers: trueCaddy with OAuth
Section titled “Caddy with OAuth”Caddy with the caddy-security plugin can authenticate users and pass identity headers.
{ gateway: { bind: "lan", trustedProxies: ["127.0.0.1"], // Caddy's IP (if on same host) auth: { mode: "trusted-proxy", trustedProxy: { userHeader: "x-forwarded-user", }, }, },}Caddyfile snippet:
openclaw.example.com { authenticate with oauth2_provider authorize with policy1
reverse_proxy openclaw:18789 { header_up X-Forwarded-User {http.auth.user.email} }}nginx + oauth2-proxy
Section titled “nginx + oauth2-proxy”oauth2-proxy authenticates users and passes identity in x-auth-request-email.
{ gateway: { bind: "lan", trustedProxies: ["10.0.0.1"], // nginx/oauth2-proxy IP auth: { mode: "trusted-proxy", trustedProxy: { userHeader: "x-auth-request-email", }, }, },}nginx config snippet:
location / { auth_request /oauth2/auth; auth_request_set $user $upstream_http_x_auth_request_email;
proxy_pass http://openclaw:18789; proxy_set_header X-Auth-Request-Email $user; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade";}Traefik with Forward Auth
Section titled “Traefik with Forward Auth”{ gateway: { bind: "lan", trustedProxies: ["172.17.0.1"], // Traefik container IP auth: { mode: "trusted-proxy", trustedProxy: { userHeader: "x-forwarded-user", }, }, },}Mixed token configuration
Section titled “Mixed token configuration”OpenClaw rejects ambiguous configurations where both a gateway.auth.token (or OPENCLAW_GATEWAY_TOKEN) and trusted-proxy mode are active at the same time. Mixed token configs can cause loopback requests to silently authenticate on the wrong auth path.
If you see a mixed_trusted_proxy_token error on startup:
- Remove the shared token when using trusted-proxy mode, or
- Switch
gateway.auth.modeto"token"if you intend token-based auth.
Loopback trusted-proxy auth also fails closed: same-host callers must supply the configured identity headers through a trusted proxy instead of being silently authenticated.
Security Checklist
Section titled “Security Checklist”Before enabling trusted-proxy auth, verify:
- Proxy is the only path: The Gateway port is firewalled from everything except your proxy
- trustedProxies is minimal: Only your actual proxy IPs, not entire subnets
- Proxy strips headers: Your proxy overwrites (not appends)
x-forwarded-*headers from clients - TLS termination: Your proxy handles TLS; users connect via HTTPS
- allowUsers is set (recommended): Restrict to known users rather than allowing anyone authenticated
- No mixed token config: Do not set both
gateway.auth.tokenandgateway.auth.mode: "trusted-proxy"
Security Audit
Section titled “Security Audit”openclaw security audit will flag trusted-proxy auth with a critical severity finding. This is intentional — it’s a reminder that you’re delegating security to your proxy setup.
The audit checks for:
- Missing
trustedProxiesconfiguration - Missing
userHeaderconfiguration - Empty
allowUsers(allows any authenticated user)
Troubleshooting
Section titled “Troubleshooting””trusted_proxy_untrusted_source”
Section titled “”trusted_proxy_untrusted_source””The request didn’t come from an IP in gateway.trustedProxies. Check:
- Is the proxy IP correct? (Docker container IPs can change)
- Is there a load balancer in front of your proxy?
- Use
docker inspectorkubectl get pods -o wideto find actual IPs
”trusted_proxy_user_missing”
Section titled “”trusted_proxy_user_missing””The user header was empty or missing. Check:
- Is your proxy configured to pass identity headers?
- Is the header name correct? (case-insensitive, but spelling matters)
- Is the user actually authenticated at the proxy?
“trustedproxy_missing_header*”
Section titled ““trustedproxy_missing_header*””A required header wasn’t present. Check:
- Your proxy configuration for those specific headers
- Whether headers are being stripped somewhere in the chain
”trusted_proxy_user_not_allowed”
Section titled “”trusted_proxy_user_not_allowed””The user is authenticated but not in allowUsers. Either add them or remove the allowlist.
WebSocket Still Failing
Section titled “WebSocket Still Failing”Make sure your proxy:
- Supports WebSocket upgrades (
Upgrade: websocket,Connection: upgrade) - Passes the identity headers on WebSocket upgrade requests (not just HTTP)
- Doesn’t have a separate auth path for WebSocket connections
Migration from Token Auth
Section titled “Migration from Token Auth”If you’re moving from token auth to trusted-proxy:
- Configure your proxy to authenticate users and pass headers
- Test the proxy setup independently (curl with headers)
- Update OpenClaw config with trusted-proxy auth
- Restart the Gateway
- Test WebSocket connections from the Control UI
- Run
openclaw security auditand review findings
Related
Section titled “Related”- Security — full security guide
- Configuration — config reference
- Remote Access — other remote access patterns
- Tailscale — simpler alternative for tailnet-only access