feat(cli): explain Tailscale exposure options
This commit is contained in:
@@ -106,9 +106,17 @@ async function promptGatewayConfig(
|
|||||||
await select({
|
await select({
|
||||||
message: "Tailscale exposure",
|
message: "Tailscale exposure",
|
||||||
options: [
|
options: [
|
||||||
{ value: "off", label: "Off" },
|
{ value: "off", label: "Off", hint: "No Tailscale exposure" },
|
||||||
{ value: "serve", label: "Serve" },
|
{
|
||||||
{ value: "funnel", label: "Funnel" },
|
value: "serve",
|
||||||
|
label: "Serve",
|
||||||
|
hint: "Private HTTPS for your tailnet (devices on Tailscale)",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: "funnel",
|
||||||
|
label: "Funnel",
|
||||||
|
hint: "Public HTTPS via Tailscale Funnel (internet)",
|
||||||
|
},
|
||||||
],
|
],
|
||||||
}),
|
}),
|
||||||
runtime,
|
runtime,
|
||||||
|
|||||||
@@ -260,9 +260,17 @@ export async function runInteractiveOnboarding(
|
|||||||
await select({
|
await select({
|
||||||
message: "Tailscale exposure",
|
message: "Tailscale exposure",
|
||||||
options: [
|
options: [
|
||||||
{ value: "off", label: "Off" },
|
{ value: "off", label: "Off", hint: "No Tailscale exposure" },
|
||||||
{ value: "serve", label: "Serve" },
|
{
|
||||||
{ value: "funnel", label: "Funnel" },
|
value: "serve",
|
||||||
|
label: "Serve",
|
||||||
|
hint: "Private HTTPS for your tailnet (devices on Tailscale)",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
value: "funnel",
|
||||||
|
label: "Funnel",
|
||||||
|
hint: "Public HTTPS via Tailscale Funnel (internet)",
|
||||||
|
},
|
||||||
],
|
],
|
||||||
}),
|
}),
|
||||||
runtime,
|
runtime,
|
||||||
|
|||||||
Reference in New Issue
Block a user