2026-02-01 22:47:44 +01:00
|
|
|
|
---
|
|
|
|
|
|
read_when:
|
2026-02-03 13:23:00 -08:00
|
|
|
|
- 你想通过 Tailscale 访问 Gateway 网关
|
|
|
|
|
|
- 你想使用浏览器 Control UI 和配置编辑
|
|
|
|
|
|
summary: Gateway 网关 Web 界面:Control UI、绑定模式和安全
|
2026-02-01 22:47:44 +01:00
|
|
|
|
title: Web
|
|
|
|
|
|
x-i18n:
|
2026-02-03 13:23:00 -08:00
|
|
|
|
generated_at: "2026-02-03T10:13:29Z"
|
2026-02-01 22:47:44 +01:00
|
|
|
|
model: claude-opus-4-5
|
|
|
|
|
|
provider: pi
|
|
|
|
|
|
source_hash: 4da8bc9831018c482ac918a759b9739f75ca130f70993f81911818bc60a685d1
|
|
|
|
|
|
source_path: web/index.md
|
|
|
|
|
|
workflow: 15
|
|
|
|
|
|
---
|
|
|
|
|
|
|
2026-02-03 13:23:00 -08:00
|
|
|
|
# Web(Gateway 网关)
|
2026-02-01 22:47:44 +01:00
|
|
|
|
|
2026-02-03 13:23:00 -08:00
|
|
|
|
Gateway 网关从与 Gateway 网关 WebSocket 相同的端口提供一个小型**浏览器 Control UI**(Vite + Lit):
|
2026-02-01 22:47:44 +01:00
|
|
|
|
|
|
|
|
|
|
- 默认:`http://<host>:18789/`
|
|
|
|
|
|
- 可选前缀:设置 `gateway.controlUi.basePath`(例如 `/openclaw`)
|
|
|
|
|
|
|
2026-02-03 13:23:00 -08:00
|
|
|
|
功能详见 [Control UI](/web/control-ui)。
|
2026-02-01 22:47:44 +01:00
|
|
|
|
本页重点介绍绑定模式、安全和面向 Web 的界面。
|
|
|
|
|
|
|
2026-02-03 13:23:00 -08:00
|
|
|
|
## Webhooks
|
2026-02-01 22:47:44 +01:00
|
|
|
|
|
2026-02-03 13:23:00 -08:00
|
|
|
|
当 `hooks.enabled=true` 时,Gateway 网关还在同一 HTTP 服务器上公开一个小型 webhook 端点。
|
|
|
|
|
|
参见 [Gateway 网关配置](/gateway/configuration) → `hooks` 了解认证 + 载荷。
|
2026-02-01 22:47:44 +01:00
|
|
|
|
|
2026-02-03 13:23:00 -08:00
|
|
|
|
## 配置(默认开启)
|
2026-02-01 22:47:44 +01:00
|
|
|
|
|
2026-02-03 13:23:00 -08:00
|
|
|
|
当资源存在时(`dist/control-ui`),Control UI **默认启用**。
|
2026-02-02 15:46:45 +01:00
|
|
|
|
你可以通过配置控制它:
|
2026-02-01 22:47:44 +01:00
|
|
|
|
|
|
|
|
|
|
```json5
|
|
|
|
|
|
{
|
|
|
|
|
|
gateway: {
|
|
|
|
|
|
controlUi: { enabled: true, basePath: "/openclaw" }, // basePath 可选
|
|
|
|
|
|
},
|
|
|
|
|
|
}
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
## Tailscale 访问
|
|
|
|
|
|
|
|
|
|
|
|
### 集成 Serve(推荐)
|
|
|
|
|
|
|
2026-02-03 13:23:00 -08:00
|
|
|
|
保持 Gateway 网关在本地回环上,让 Tailscale Serve 代理它:
|
2026-02-01 22:47:44 +01:00
|
|
|
|
|
|
|
|
|
|
```json5
|
|
|
|
|
|
{
|
|
|
|
|
|
gateway: {
|
|
|
|
|
|
bind: "loopback",
|
|
|
|
|
|
tailscale: { mode: "serve" },
|
|
|
|
|
|
},
|
|
|
|
|
|
}
|
|
|
|
|
|
```
|
|
|
|
|
|
|
2026-02-03 13:23:00 -08:00
|
|
|
|
然后启动 Gateway 网关:
|
2026-02-01 22:47:44 +01:00
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
|
openclaw gateway
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
打开:
|
|
|
|
|
|
|
2026-02-02 15:46:45 +01:00
|
|
|
|
- `https://<magicdns>/`(或你配置的 `gateway.controlUi.basePath`)
|
2026-02-01 22:47:44 +01:00
|
|
|
|
|
|
|
|
|
|
### Tailnet 绑定 + 令牌
|
|
|
|
|
|
|
|
|
|
|
|
```json5
|
|
|
|
|
|
{
|
|
|
|
|
|
gateway: {
|
|
|
|
|
|
bind: "tailnet",
|
|
|
|
|
|
controlUi: { enabled: true },
|
|
|
|
|
|
auth: { mode: "token", token: "your-token" },
|
|
|
|
|
|
},
|
|
|
|
|
|
}
|
|
|
|
|
|
```
|
|
|
|
|
|
|
2026-02-03 13:23:00 -08:00
|
|
|
|
然后启动 Gateway 网关(非本地回环绑定需要令牌):
|
2026-02-01 22:47:44 +01:00
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
|
openclaw gateway
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
打开:
|
|
|
|
|
|
|
2026-02-02 15:46:45 +01:00
|
|
|
|
- `http://<tailscale-ip>:18789/`(或你配置的 `gateway.controlUi.basePath`)
|
2026-02-01 22:47:44 +01:00
|
|
|
|
|
2026-02-03 13:23:00 -08:00
|
|
|
|
### 公共互联网(Funnel)
|
2026-02-01 22:47:44 +01:00
|
|
|
|
|
|
|
|
|
|
```json5
|
|
|
|
|
|
{
|
|
|
|
|
|
gateway: {
|
|
|
|
|
|
bind: "loopback",
|
|
|
|
|
|
tailscale: { mode: "funnel" },
|
|
|
|
|
|
auth: { mode: "password" }, // 或 OPENCLAW_GATEWAY_PASSWORD
|
|
|
|
|
|
},
|
|
|
|
|
|
}
|
|
|
|
|
|
```
|
|
|
|
|
|
|
2026-02-03 13:23:00 -08:00
|
|
|
|
## 安全注意事项
|
2026-02-01 22:47:44 +01:00
|
|
|
|
|
2026-02-03 13:23:00 -08:00
|
|
|
|
- Gateway 网关认证默认是必需的(令牌/密码或 Tailscale 身份头)。
|
|
|
|
|
|
- 非本地回环绑定仍然**需要**共享令牌/密码(`gateway.auth` 或环境变量)。
|
|
|
|
|
|
- 向导默认生成 Gateway 网关令牌(即使在本地回环上)。
|
2026-02-01 22:47:44 +01:00
|
|
|
|
- UI 发送 `connect.params.auth.token` 或 `connect.params.auth.password`。
|
2026-02-03 13:23:00 -08:00
|
|
|
|
- 使用 Serve 时,当 `gateway.auth.allowTailscale` 为 `true` 时,Tailscale 身份头可以满足认证(无需令牌/密码)。设置 `gateway.auth.allowTailscale: false` 以要求显式凭证。参见 [Tailscale](/gateway/tailscale) 和 [安全](/gateway/security)。
|
2026-02-01 22:47:44 +01:00
|
|
|
|
- `gateway.tailscale.mode: "funnel"` 需要 `gateway.auth.mode: "password"`(共享密码)。
|
|
|
|
|
|
|
|
|
|
|
|
## 构建 UI
|
|
|
|
|
|
|
2026-02-03 13:23:00 -08:00
|
|
|
|
Gateway 网关从 `dist/control-ui` 提供静态文件。使用以下命令构建:
|
2026-02-01 22:47:44 +01:00
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
|
pnpm ui:build # 首次运行时自动安装 UI 依赖
|
|
|
|
|
|
```
|