tailscale-proxy 1.1.0 → 1.3.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.
- package/README.md +4 -2
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -110,11 +110,13 @@ 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`) |
|
|
116
117
|
| `--deregister-cycles <n>` | `5` | Missing scans before a gone service is removed |
|
|
117
118
|
| `--forward-host` | off | Forward the public host to apps via `X-Forwarded-Host/Proto`. Default presents a **local** request so apps behave exactly like `localhost` |
|
|
119
|
+
| `--accept-dns <bool>` | unset | Optionally `tailscale set --accept-dns=<true\|false>` on start. Unset = leave it alone. `false` lets a tailnet host resolve the **public** funnel name (persists after exit) |
|
|
118
120
|
| `--bg` | off | Run detached (logs → `./tsp.log`) |
|
|
119
121
|
| `--proxy-only` | off | Run the proxy only; print the `tailscale` command |
|
|
120
122
|
| `--log-requests` | on | Log each proxied request |
|
|
@@ -144,8 +146,8 @@ use). Flags override config at runtime; the file is the source of defaults.
|
|
|
144
146
|
```json
|
|
145
147
|
{
|
|
146
148
|
"ports": "3000-5000", "all": false, "runtimes": "", "private": false,
|
|
147
|
-
"port": 8443, "interval": 20, "httpsPort": 443,
|
|
148
|
-
"logRequests": true, "deregisterCycles": 5, "forwardHost": false
|
|
149
|
+
"bind": "127.0.0.1", "port": 8443, "interval": 20, "httpsPort": 443,
|
|
150
|
+
"logRequests": true, "deregisterCycles": 5, "forwardHost": false, "acceptDns": ""
|
|
149
151
|
}
|
|
150
152
|
```
|
|
151
153
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tailscale-proxy",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.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.
|
|
78
|
-
"tailscale-proxy-darwin-x64": "1.
|
|
79
|
-
"tailscale-proxy-linux-x64": "1.
|
|
80
|
-
"tailscale-proxy-linux-arm64": "1.
|
|
81
|
-
"tailscale-proxy-win32-x64": "1.
|
|
82
|
-
"tailscale-proxy-win32-arm64": "1.
|
|
77
|
+
"tailscale-proxy-darwin-arm64": "1.3.0",
|
|
78
|
+
"tailscale-proxy-darwin-x64": "1.3.0",
|
|
79
|
+
"tailscale-proxy-linux-x64": "1.3.0",
|
|
80
|
+
"tailscale-proxy-linux-arm64": "1.3.0",
|
|
81
|
+
"tailscale-proxy-win32-x64": "1.3.0",
|
|
82
|
+
"tailscale-proxy-win32-arm64": "1.3.0"
|
|
83
83
|
},
|
|
84
84
|
"packageManager": "bun@1.3.14",
|
|
85
85
|
"engines": {
|