Painel do OpenClaw Não Carrega: Correções de Portas, WebSockets e Proxy Reverso

Olá solucionadores de problemas do painel — se você está olhando para uma página em branco, conexão recusada ou erros de "não autorizado" enquanto o gateway do OpenClaw está definitivamente em execução, já passei por isso.
Na semana passada, depurei exatamente esse problema em quatro configurações: desenvolvimento local no Mac, Docker no Ubuntu, proxy reverso nginx e uma instância exposta pelo Tailscale. Cada uma delas tinha um modo de falha diferente — mas todas se resumiram às mesmas cinco causas raiz.
O HTML carrega. O DevTools mostra falhas no handshake do WebSocket. Os logs do gateway não dizem nada útil. Você não tem certeza se é autenticação, rede ou corrupção de configuração.
Aqui está o que realmente quebra: cabeçalhos de atualização de WebSocket ausentes no seu proxy, NAT do Docker tratando localhost como externo, tokens de autenticação não persistindo no localStorage ou colisões de portas de serviços antigos Clawdbot/Moltbot ainda em execução.
Este guia percorre o fluxo de diagnóstico que construí após corrigir esses problemas repetidamente. Comece aqui, siga as verificações e você ou fará o painel funcionar ou saberá exatamente o que relatar.
Confirmar Saúde do Serviço

Before diving into proxies and ports, verify the gateway is actually functional.
Is the Gateway Process Running?
# Check gateway status
openclaw status
# If using systemd
systemctl --user status openclaw-gateway
# Docker users
docker ps | grep openclaw-gateway
What you're looking for:
- Status:
runningoractive - Uptime: More than 30 seconds (not crash-looping)
- No recent restarts
If it's not running or restarting constantly, stop here and fix the gateway install issues first.
Can the WebSocket Server Respond?
Test the WebSocket endpoint directly:
# Install wscat if you don't have it
npm install -g wscat
# Test connection (replace with your actual token)
wscat -c "ws://127.0.0.1:18789/?token=YOUR_TOKEN_HERE"
Possible outcomes:
- Connected, gets challenge message → Gateway is fine, problem is browser/proxy
- Connection refused → Port/bind issue, go to next section
- Connected then immediately closes with 1008 → Auth problem
If wscat connects but the browser doesn't, the issue is either CORS, proxy config, or browser security policy.
Check What the Gateway Actually Heard
Look at recent logs:
# View last 50 log lines
openclaw logs --limit 50
# Docker
docker logs openclaw-gateway --tail 50
# Look for WebSocket handshake attempts
openclaw logs | grep -E 'ws\]|websocket|handshake'
Key patterns:
[ws] accepted→ Connection succeeded[ws] closed before connect ... code=1008 reason=pairing required→ Auth mismatch[ws] closed before connect ... code=1008 reason=unauthorized: gateway token missing→ Token not reaching gatewayOrigin http://... is not allowed→ CORS issue
Port Conflicts & Bind Addresses
Problem: Gateway Binds to Wrong Interface
Symptom: Gateway runs fine via CLI, but browser can't connect to 127.0.0.1:18789.
Cause: Gateway bound to a Tailscale IP, VPN interface, or external IP instead of loopback.
This is Issue #1380 — when Tailscale is active, the gateway sometimes binds to 100.x.x.x instead of 127.0.0.1. Browser WebSocket connections to Tailscale IPs fail.
Diagnose:
# Check what interface the gateway bound to
openclaw status
# Or inspect the actual listening socket
sudo lsof -i :18789
# Look at the "NAME" column - should show 127.0.0.1:18789
Fix:
Force loopback binding in config (~/.openclaw/config.json):
{
"gateway": {
"bind": "loopback",
"port": 18789
}
}
Valid bind options:
loopback→ 127.0.0.1 only (default, safest)lan→ 0.0.0.0 (all interfaces, requires auth)tailnet→ Tailscale IP
After changing bind, restart:
systemctl --user restart openclaw-gateway
# or
docker compose restart openclaw-gateway
Problem: Port 18789 Already in Use
Symptom: Gateway won't start, logs show EADDRINUSE.
Cause: Old Clawdbot/Moltbot gateway still running, or another service using 18789.
Diagnose:
# Find what's using the port
sudo lsof -i :18789
# Or
sudo ss -tlnp | grep 18789
Fix Option A: Stop Conflicting Service
# Stop old Clawdbot
systemctl --user stop clawdbot-gateway
# Kill the process if needed
sudo kill -9 <PID>
Fix Option B: Change OpenClaw Port
In ~/.openclaw/config.json:
{
"gateway": {
"port": 18790
}
}
Update Docker compose if using containers:
ports:
- "127.0.0.1:18790:18790"
Then access dashboard at http://127.0.0.1:18790/.
Problem: Docker NAT Breaks Localhost Detection
Symptom: Running gateway in Docker Desktop on Windows/Mac, browser shows "pairing required" even with correct token.
Cause: Docker's NAT networking makes the gateway see connections from 172.18.0.1 instead of 127.0.0.1. Gateway treats this as an external connection requiring node pairing.
Diagnose:
Check gateway logs for:
[ws] closed before connect conn=... remote=172.18.0.1 ... code=1008 reason=pairing required
If you see remote=172.18.0.1 but you're connecting from 127.0.0.1, this is the issue.
Fix:
Add trusted proxies to your config:
{
"gateway": {
"trustedProxies": ["172.18.0.0/16", "172.17.0.0/16"]
}
}
Or run gateway with --bind lan and enforce token auth:
{
"gateway": {
"bind": "lan",
"auth": {
"mode": "token",
"token": "your-secret-token"
}
}
}
Better fix for Windows/Mac: Run gateway natively instead of in Docker to get real localhost connections.
Reverse Proxy WebSockets Checklist
If you're exposing OpenClaw through nginx, Caddy, or another reverse proxy, WebSocket support needs explicit configuration.
nginx Configuration
The dashboard uses WebSockets for real-time communication. Standard HTTP proxying breaks this.
Minimal working config:
server {
listen 443 ssl;
server_name openclaw.yourdomain.com;
# SSL certs
ssl_certificate /path/to/cert.pem;
ssl_certificate_key /path/to/key.pem;
location / {
proxy_pass http://127.0.0.1:18789;
# Critical for WebSockets
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
# Pass through client info
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
# WebSocket timeouts
proxy_read_timeout 86400;
proxy_send_timeout 86400;
}
}
Common nginx mistakes:
- Missing
proxy_http_version 1.1→ WebSocket upgrade fails - Missing
UpgradeandConnectionheaders → Handshake rejected - Default timeout (60s) → WebSocket closes after idle time
Detailed nginx reverse proxy guide: nginx WebSocket proxying
Caddy Configuration
Caddy handles WebSockets automatically, but you still need proper config:
openclaw.yourdomain.com {
reverse_proxy 127.0.0.1:18789
}
That's it. Caddy auto-detects the WebSocket upgrade and adjusts timeouts.
If using subpath:
yourdomain.com {
reverse_proxy /openclaw/* 127.0.0.1:18789
}
Then access via https://yourdomain.com/openclaw/.
Debugging Caddy WebSocket issues:
Enable verbose logging:
openclaw.yourdomain.com {
log {
output file /var/log/caddy/openclaw.log
level DEBUG
}
reverse_proxy 127.0.0.1:18789
}
Check for websocket upgrade in logs. If missing, Caddy isn't detecting the upgrade request.
Apache Configuration
Less common but occasionally used:
<VirtualHost *:443>
ServerName openclaw.yourdomain.com
SSLEngine On
SSLCertificateFile /path/to/cert.pem
SSLCertificateKeyFile /path/to/key.pem
# Enable proxy modules
# a2enmod proxy proxy_http proxy_wstunnel rewrite
ProxyPreserveHost On
# WebSocket tunnel
RewriteEngine On
RewriteCond %{HTTP:Upgrade} =websocket [NC]
RewriteRule /(.*) ws://127.0.0.1:18789/$1 [P,L]
# Regular HTTP proxy
ProxyPass / http://127.0.0.1:18789/
ProxyPassReverse / http://127.0.0.1:18789/
</VirtualHost>
Enable required modules:
sudo a2enmod proxy proxy_http proxy_wstunnel rewrite
sudo systemctl restart apache2
CORS / HTTPS Gotchas
Mixed Content Blocking
Symptom: Dashboard loads over HTTPS but WebSocket connection fails with mixed content error.
Cause: Browser blocks ws:// (non-secure WebSocket) when page is loaded over https://.
Fix:
Use wss:// (WebSocket Secure) behind your reverse proxy.
Your nginx/Caddy terminates SSL and forwards to http://127.0.0.1:18789, but the browser needs to connect via wss://.
Example flow:
- Browser:
wss://openclaw.yourdomain.com/→ nginx with SSL - nginx:
ws://127.0.0.1:18789/→ gateway (local, no SSL needed)
The dashboard auto-detects this if you access it via HTTPS URL.
CORS Rejections
Symptom: Browser console shows CORS policy: No 'Access-Control-Allow-Origin' header.
Cause: Accessing dashboard from a different domain than the gateway expects.
Context: As of OpenClaw's security updates, the Control UI has stricter origin validation.
Fix:
If your dashboard is at https://openclaw.example.com but gateway config doesn't know about it:
{
"gateway": {
"cors": {
"origins": ["https://openclaw.example.com"]
}
}
}
Security note: Don't use "origins": ["*"] in production. This exposes your gateway to external access vulnerabilities.
Token Not Persisting in localStorage
Symptom: Dashboard keeps asking for token every time you reload.
Cause: Browser's localStorage API blocked or cleared.
Diagnose:
Open DevTools → Application → Local Storage → http://127.0.0.1:18789
Look for key: openclaw-gateway-token
If missing after login, check:
- Browser in private/incognito mode (localStorage disabled)
- Third-party cookie blocking extensions
- Browser set to clear storage on exit
Workaround:
Use the tokenized URL every time:
openclaw dashboard
This command outputs a URL with ?token=... appended. The UI strips it after first load and saves to localStorage — but if that fails, you need the URL each time.
Logs to Collect Before Reporting

If none of the above fixes work, you're in edge case territory. Before opening a GitHub issue, collect these logs:
Gateway Logs
# Last 100 lines with timestamps
openclaw logs --limit 100 > gateway-logs.txt
# Docker
docker logs openclaw-gateway --tail 100 > gateway-logs.txt
Browser Console Logs
- Open DevTools (F12)
- Go to Console tab
- Reproduce the connection failure
- Right-click console → Save as... →
browser-console.txt
WebSocket Frame Inspection
- DevTools → Network tab
- Filter: WS
- Click the WebSocket connection
- Check "Messages" tab for handshake details
- Screenshot the Headers tab showing request/response
Config Sanitized
# Export config (redact tokens)
cat ~/.openclaw/config.json | sed 's/"token": ".*"/"token": "REDACTED"/g' > config-sanitized.json
Network Environment
# Check firewall rules (Linux)
sudo iptables -L -n | grep 18789
# Check what's binding to the port
sudo lsof -i :18789
# Test from external host if relevant
curl -v http://your-server-ip:18789/
What Actually Breaks Dashboards

Após depurar isso em diferentes ambientes, aqui está a distribuição de falhas que observei:
60% - Configuração de WebSocket do proxy reverso ausente
- nginx sem cabeçalhos
Upgrade/Connection - Configurações de timeout incorretas
- Faltando
proxy_http_version 1.1
20% - Docker NAT tratando localhost como externo
- Windows/Mac Docker Desktop
- Resolvido executando o gateway de forma nativa ou adicionando
trustedProxies
10% - Conflitos de porta de Clawdbot/Moltbot antigos
- Esqueceu de parar serviços antigos antes de instalar o OpenClaw
- Resolvido matando processos antigos ou alterando a porta
5% - Tailscale vinculando em vez de loopback
- Gateway vincula a
100.x.x.xquando Tailscale está ativo - Resolvido forçando
bind: "loopback"na configuração
5% - Incompatibilidade de token de autenticação
- Token na configuração não corresponde ao token na URL
- Resolvido executando
openclaw dashboardpara obter o link tokenizado correto
O mais comum — configuração de WebSocket do proxy reverso — também é o mais fácil de passar despercebido porque a parte HTTP funciona bem. Você vê o HTML, o CSS carrega, mas o WebSocket falha silenciosamente.
Se você estiver operando atrás de um proxy e o painel não se conectar, essa é sua primeira verificação.
Na Macaron, nós hospedamos a interface para você — sem precisar debugar configurações do nginx, sem ajustes de timeout do WebSocket, sem surpresas de NAT do Docker. Se você está cansado de resolver problemas de infraestrutura antes mesmo de testar fluxos de trabalho, prefere uma interface hospedada para fluxos de trabalho? Crie uma conta na Macaron.
FAQ
P: O HTML do painel carrega, mas nada funciona. Por onde começo? Abra DevTools → Network → aba WS. Se o handshake do WebSocket está falhando, é quase certo que você está sem os cabeçalhos Upgrade e Connection na sua configuração de proxy reverso. Isso resolve 60% dos casos. Se você quiser descartar uma instalação ruim primeiro, recomendo verificar com o guia de instalação do OpenClaw antes de aprofundar na configuração de proxy.
P: Por que meu gateway mostra "pareamento necessário" mesmo que eu tenha configurado o token corretamente? Verifique seus logs em busca de remote=172.18.0.1. Se você estiver no Docker Desktop (Windows ou Mac), o NAT está fazendo o gateway pensar que você é uma conexão externa. Execute o gateway nativamente ou adicione trustedProxies à sua configuração — o guia de configuração do Docker tem a configuração de rede exata para este cenário.
Q: O Gateway continua pedindo meu token a cada recarga de página. O localStorage do seu navegador não está persistindo. Geralmente, isso acontece no modo anônimo, uma extensão de privacidade agressiva, ou com a opção "limpar armazenamento ao sair" ativada. Use o URL tokenizado do painel openclaw como solução alternativa. Se os problemas de autenticação forem além disso, o checklist de segurança do OpenClaw cobre a gestão de tokens em mais detalhes.
Q: A porta 18789 já está em uso. O que está segurando? Nove em cada dez vezes é um gateway antigo Moltbot ou Clawdbot ainda em execução. lsof -i :18789 dirá o que é. Finalize o processo ou simplesmente mude a porta do OpenClaw no config. Se você migrou do Moltbot recentemente, este artigo sobre rodar ambos juntos vale a leitura — conflitos de serviço são um problema comum lá.
Q: Meu painel HTTPS não consegue se conectar ao WebSocket. Conteúdo misto — o navegador não permitirá ws:// em uma página HTTPS, de jeito nenhum. Seu proxy precisa lidar com a terminação wss://. Se você está em um VPS e continua enfrentando isso, o guia de implantação em VPS tem uma configuração nginx + SSL funcional que você pode usar diretamente.
P: Tailscale está ativo e o painel agora não carrega localmente. Problema conhecido (#1380) — O Tailscale pode puxar o gateway para 100.x.x.x em vez de 127.0.0.1. Adicione "bind": "loopback" à sua configuração e reinicie. Se o comportamento de bind ainda estiver confuso depois disso, a referência do gateway detalha todas as opções claramente.










