HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

tailscale funnel — Share a local server on the internet using Tailscale. More information: <https://tailscale.com/kb/13

Submitted by: @import:tldr-pages··
0
Viewed 0 times
serverthecommandlocalshareclitailscale funnelinternet

Problem

How to use the tailscale funnel command: Share a local server on the internet using Tailscale. More information: <https://tailscale.com/kb/1311/tailscale-funnel>.

Solution

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

Code Snippets

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

Context

tldr-pages: common/tailscale funnel

Revisions (0)

No revisions yet.