⚠️ Security Warning: OpenClaw grants AI full system access ⚠️

🛑 STOP! Are You Ready?

OpenClaw is NOT a toy. It's a tool for engineers. You must check ALL items to proceed.

This Isn't For Me

Cloud Installation

Compare providers and deployment options.

Provider Comparison

Provider Method Main Pitfall Cost Best For
Hostinger VPS Template Finding Gateway Token $6-10/mo Beginners
Zeabur Docker Image Port binding restart loop Usage-based Developers
DigitalOcean Droplet + Script Firewall configuration $6/mo Power Users

Hostinger: Finding Your Token

After one-click install, you need the Gateway Token to access the Web UI:

  1. SSH into your VPS
  2. Run the command below to find your token
  3. Use this token to log into the Web UI
ssh root@your-vps-ip
cat ~/.openclaw/.env | grep OPENCLAW_GATEWAY_TOKEN

⚠️ Zeabur: Fix Restart Loop

If your container keeps restarting with Invalid --bind:

Add these environment variables:

CLAWDBOT_GATEWAY_BIND=auto
CLAWDBOT_GATEWAY_PORT=18789

🔒 Security: Use SSH Tunnel

NEVER expose port 18789 to the public internet. Use SSH tunnel:

ssh -L 18789:127.0.0.1:18789 root@your-vps-ip

Then access http://localhost:18789 in your browser.