conductor-remote 1.75.0 → 1.76.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -0
- package/dist/assets/{index-CF1hSnUi.js → index-B7l0pOim.js} +28 -28
- package/dist/assets/index-BnacVtpu.css +1 -0
- package/dist/index.html +2 -2
- package/dist/sw.js +1 -1
- package/dist-node/scripts/service.js +151 -55
- package/dist-node/src/funnel-watchdog.js +37 -1
- package/dist-node/src/mcp-tools.js +14 -3
- package/dist-node/src/reads.js +24 -3
- package/dist-node/src/search.js +24 -4
- package/dist-node/src/server.js +10 -3
- package/dist-node/src/tailscale.js +69 -0
- package/package.json +1 -1
- package/dist/assets/index-CXd-zI4t.css +0 -1
package/README.md
CHANGED
|
@@ -64,6 +64,12 @@ tailnet-only instead (devices logged into your tailnet, via `tailscale serve`),
|
|
|
64
64
|
install with `--expose tailnet` (or `EXPOSE=tailnet`). The choice is remembered
|
|
65
65
|
across re-deploys.
|
|
66
66
|
|
|
67
|
+
The relay sits on `:443` by default. When another service already holds that
|
|
68
|
+
port (Funnel is per port, and some webhooks only ever dial 443), the deploy leaves
|
|
69
|
+
it alone and mounts the relay on the next free port instead, so the phone URL can
|
|
70
|
+
read `https://<node>:8787/`. `service status` and `config` report whichever
|
|
71
|
+
port is live; a mapping already in place is kept wherever it is.
|
|
72
|
+
|
|
67
73
|
## Architecture
|
|
68
74
|
|
|
69
75
|
```
|