Update cheatsheets

This commit is contained in:
ivuorinen
2025-12-24 00:21:36 +00:00
parent 4e6886aa1f
commit 70f6f2ac08
27 changed files with 174 additions and 69 deletions

25
tldr/tailscale-funnel Normal file
View File

@@ -0,0 +1,25 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# tailscale funnel
> Share a local server on the internet using Tailscale.
> More information: <https://tailscale.com/kb/1311/tailscale-funnel>.
- Expose a local file or directory in the foreground:
`tailscale funnel {{path/to/file_or_directory}}`
- Expose an HTTP server running at 127.0.0.1:3000 in the foreground:
`tailscale funnel 3000`
- Expose an HTTP server running at 127.0.0.1:3000 in the background:
`tailscale funnel --bg 3000`
- Expose an HTTPS server with invalid or self-signed certificates at https://localhost:8443:
`tailscale funnel https+insecure://localhost:8443`