tailscale-proxy 1.1.0 → 1.2.0

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.
Files changed (2) hide show
  1. package/README.md +2 -1
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -110,6 +110,7 @@ Run `tsp start --help` for all flags. Global: `-h/--help`, `-v/--version`.
110
110
  | `--all` | off | Include all listeners, not just web runtimes |
111
111
  | `--runtimes <list>` | all known | Restrict to specific runtimes, e.g. `node,bun,python` |
112
112
  | `--private` | off | Expose privately via Tailscale **Serve** (default: **Funnel**) |
113
+ | `--bind <addr>` | `127.0.0.1` | Proxy listen address. Use `0.0.0.0` to reach the proxy from **Docker containers / the LAN** without MagicDNS |
113
114
  | `--port <n>` | `8443` | Local proxy HTTP port |
114
115
  | `--interval <sec>` | `20` | Re-scan period |
115
116
  | `--https-port <n>` | `443` | Public/tailnet HTTPS port (Funnel: `443`/`8443`/`10000`) |
@@ -144,7 +145,7 @@ use). Flags override config at runtime; the file is the source of defaults.
144
145
  ```json
145
146
  {
146
147
  "ports": "3000-5000", "all": false, "runtimes": "", "private": false,
147
- "port": 8443, "interval": 20, "httpsPort": 443,
148
+ "bind": "127.0.0.1", "port": 8443, "interval": 20, "httpsPort": 443,
148
149
  "logRequests": true, "deregisterCycles": 5, "forwardHost": false
149
150
  }
150
151
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tailscale-proxy",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
4
  "description": "Discover local dev servers by port and expose them through one Tailscale Serve/Funnel entry, routed by project name.",
5
5
  "keywords": [
6
6
  "tailscale",
@@ -74,12 +74,12 @@
74
74
  "semantic-release": "^25.0.3"
75
75
  },
76
76
  "optionalDependencies": {
77
- "tailscale-proxy-darwin-arm64": "1.1.0",
78
- "tailscale-proxy-darwin-x64": "1.1.0",
79
- "tailscale-proxy-linux-x64": "1.1.0",
80
- "tailscale-proxy-linux-arm64": "1.1.0",
81
- "tailscale-proxy-win32-x64": "1.1.0",
82
- "tailscale-proxy-win32-arm64": "1.1.0"
77
+ "tailscale-proxy-darwin-arm64": "1.2.0",
78
+ "tailscale-proxy-darwin-x64": "1.2.0",
79
+ "tailscale-proxy-linux-x64": "1.2.0",
80
+ "tailscale-proxy-linux-arm64": "1.2.0",
81
+ "tailscale-proxy-win32-x64": "1.2.0",
82
+ "tailscale-proxy-win32-arm64": "1.2.0"
83
83
  },
84
84
  "packageManager": "bun@1.3.14",
85
85
  "engines": {