tailscale-proxy 1.2.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 +2 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -116,6 +116,7 @@ Run `tsp start --help` for all flags. Global: `-h/--help`, `-v/--version`.
|
|
|
116
116
|
| `--https-port <n>` | `443` | Public/tailnet HTTPS port (Funnel: `443`/`8443`/`10000`) |
|
|
117
117
|
| `--deregister-cycles <n>` | `5` | Missing scans before a gone service is removed |
|
|
118
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) |
|
|
119
120
|
| `--bg` | off | Run detached (logs → `./tsp.log`) |
|
|
120
121
|
| `--proxy-only` | off | Run the proxy only; print the `tailscale` command |
|
|
121
122
|
| `--log-requests` | on | Log each proxied request |
|
|
@@ -146,7 +147,7 @@ use). Flags override config at runtime; the file is the source of defaults.
|
|
|
146
147
|
{
|
|
147
148
|
"ports": "3000-5000", "all": false, "runtimes": "", "private": false,
|
|
148
149
|
"bind": "127.0.0.1", "port": 8443, "interval": 20, "httpsPort": 443,
|
|
149
|
-
"logRequests": true, "deregisterCycles": 5, "forwardHost": false
|
|
150
|
+
"logRequests": true, "deregisterCycles": 5, "forwardHost": false, "acceptDns": ""
|
|
150
151
|
}
|
|
151
152
|
```
|
|
152
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": {
|