1032740078/dsh-web-url-view ↗★ 0
dsh-web-url-view
Settings page that shows the Web GUI access URLs, including a stable fixed address that survives restarts and is reachable from other devices on the same LAN · 设置页「查看 URL」:显示长期不变的固定访问地址,局域网内其他设备也能直接打开
AI 分析
适合多设备访问本机面板的场景;可配置固定端口/监听地址,需编辑对应 profile 配置。
インストール
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:1032740078/dsh-web-url-viewドキュメント
README 全文を読む ↗Configuration (port / bind host / off switch)
Default fixed port 47524, bound to 0.0.0.0 (all interfaces). To change the
port, restrict the bind, or disable the fixed address, override the row config in
the desktop profile's cordis.patch.yml and restart the desktop:
- id: web-url-view
name: dsh-web-url-view
config:
# Fixed entry listen port; 0 disables the fixed address. Default 47524.
fixedPort: 47524
# Bind interface. Default 0.0.0.0 (all interfaces, LAN-reachable); use 127.0.0.1 for localhost only.
fixedHost: 0.0.0.0
| Option | Type | Default | Meaning |
|---|---|---|---|
fixedPort | number | 47524 | Fixed entry listen port. 0 or an invalid value (>65535) disables the fixed address, leaving only the one-time address. |
fixedHost | string | 0.0.0.0 | Fixed entry bind interface. 0.0.0.0 = all interfaces (LAN-reachable); 127.0.0.1 = localhost only. |
The LAN address is auto-detected: it prefers the IPv4 of the default-route
interface and skips loopback, link-local (169.254.*) and common virtual
interfaces (docker/veth/vmnet/utun/…). When nothing usable is found it falls
back to 127.0.0.1, so localhost keeps working.