Files
openclaw/docs/zh-CN/install/exe-dev.md
Seb Slight c18452598a docs: restructure Get Started tab and improve onboarding flow (#9950)
* docs: restructure Get Started tab and improve onboarding flow

- Flatten nested Onboarding group into linear First Steps flow
- Add 'What is OpenClaw?' narrative section to landing page
- Split wizard.md into streamlined overview + full reference (reference/wizard.md)
- Move Pairing to Channels > Configuration
- Move Bootstrapping to Agents > Fundamentals
- Move macOS app onboarding to Platforms > macOS companion app
- Move Lore to Help > Community
- Remove duplicate install instructions from openclaw.md
- Mirror navigation changes in zh-CN tabs
- No content deleted — all detail preserved or relocated

* docs: move deployment pages to install/, fix Platforms tab routing, clarify onboarding paths

- Move deployment guides (fly, hetzner, gcp, macos-vm, exe-dev, railway, render,
  northflank) from platforms/ and root to install/
- Add 'Hosting and deployment' group to Install tab
- Slim Gateway & Ops 'Remote access and deployment' down to 'Remote access'
- Swap Platforms tab before Gateway & Ops to fix path-prefix routing
- Move macOS app onboarding into First steps (parallel to CLI wizard)
- Rename sidebar titles to 'Onboarding: CLI' / 'Onboarding: macOS App'
- Add redirects for all moved paths
- Update all internal links (en + zh-CN)
- Fix img tag syntax in onboarding.md
2026-02-05 17:45:01 -05:00

3.7 KiB
Raw Permalink Blame History

read_when, summary, title, x-i18n
read_when summary title x-i18n
你想要一个便宜的常驻 Linux 主机来运行 Gateway 网关
你想要远程控制 UI 访问而无需运行自己的 VPS
在 exe.dev 上运行 OpenClaw Gateway 网关VM + HTTPS 代理)以实现远程访问 exe.dev
generated_at model provider source_hash source_path workflow
2026-02-03T07:51:36Z claude-opus-4-5 pi 8d57ee7dd6029f0b778465c147092b824a0f1b0680af13032aaf116ff3d4d671 platforms/exe-dev.md 15

exe.dev

目标OpenClaw Gateway 网关运行在 exe.dev VM 上,可从你的笔记本电脑通过以下地址访问:https://<vm-name>.exe.xyz

本页假设使用 exe.dev 的默认 exeuntu 镜像。如果你选择了不同的发行版,请相应地映射软件包。

新手快速路径

  1. https://exe.new/openclaw
  2. 根据需要填写你的认证密钥/令牌
  3. 点击 VM 旁边的"Agent",然后等待...
  4. ???
  5. 完成

你需要什么

  • exe.dev 账户
  • ssh exe.dev 访问 exe.dev 虚拟机(可选)

使用 Shelley 自动安装

Shelleyexe.dev 的智能体,可以使用我们的提示立即安装 OpenClaw。使用的提示如下

Set up OpenClaw (https://docs.openclaw.ai/install) on this VM. Use the non-interactive and accept-risk flags for openclaw onboarding. Add the supplied auth or token as needed. Configure nginx to forward from the default port 18789 to the root location on the default enabled site config, making sure to enable Websocket support. Pairing is done by "openclaw devices list" and "openclaw device approve <request id>". Make sure the dashboard shows that OpenClaw's health is OK. exe.dev handles forwarding from port 8000 to port 80/443 and HTTPS for us, so the final "reachable" should be <vm-name>.exe.xyz, without port specification.

手动安装

1) 创建 VM

从你的设备:

ssh exe.dev new

然后连接:

ssh <vm-name>.exe.xyz

提示:保持此 VM 有状态。OpenClaw 在 ~/.openclaw/~/.openclaw/workspace/ 下存储状态。

2) 安装先决条件(在 VM 上)

sudo apt-get update
sudo apt-get install -y git curl jq ca-certificates openssl

3) 安装 OpenClaw

运行 OpenClaw 安装脚本:

curl -fsSL https://openclaw.ai/install.sh | bash

4) 设置 nginx 将 OpenClaw 代理到端口 8000

编辑 /etc/nginx/sites-enabled/default

server {
    listen 80 default_server;
    listen [::]:80 default_server;
    listen 8000;
    listen [::]:8000;

    server_name _;

    location / {
        proxy_pass http://127.0.0.1:18789;
        proxy_http_version 1.1;

        # WebSocket 支持
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";

        # 标准代理头
        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;

        # 长连接超时设置
        proxy_read_timeout 86400s;
        proxy_send_timeout 86400s;
    }
}

5) 访问 OpenClaw 并授予权限

访问 https://<vm-name>.exe.xyz/?token=YOUR-TOKEN-FROM-TERMINAL(参阅新手引导中的控制 UI 输出)。使用 openclaw devices listopenclaw devices approve <requestId> 批准设备。如有疑问,从浏览器使用 Shelley

远程访问

远程访问由 exe.dev 的认证处理。默认情况下,来自端口 8000 的 HTTP 流量通过电子邮件认证转发到 https://<vm-name>.exe.xyz

更新

npm i -g openclaw@latest
openclaw doctor
openclaw gateway restart
openclaw health

指南:更新