Skip to main content

viaduct

Self-hosted reverse tunneling in a couple thousand lines of Python. Give a service running on your machine a public HTTPS URL with one command, no inbound ports, port forwarding, or NAT configuration.

$ viaduct http 8080
         _           _            _
  __   _(_) __ _  __| |_   _  ___| |_
  \ \ / / |/ _` |/ _` | | | |/ __| __|
   \ V /| | (_| | (_| | |_| | (__| |_
    \_/ |_|\__,_|\__,_|\__,_|\___|\__|  .sh
  self-hosted reverse tunnel

╭───────────────────────────────────────────────────────────────────────╮
│ Forwarding   https://funny-otter.viaduct.sh  →  http://127.0.0.1:8080  │
╰───────────────────────────────────────────────────────────────────────╯
  Ctrl+C to stop

The viaduct client dials out to a viaductd server you run on a small VPS. The server terminates public HTTPS at Caddy and pipes raw bytes back down the tunnel to your localhost. It is a deliberately small alternative to ngrok and frp: standard-library Python, no database, no accounts, and only typer and rich as runtime dependencies.

Why viaduct

  • Self-hosted and yours. One droplet, your domain, your data. Nothing routes through a third party.
  • Small enough to read. The whole client and server are plain asyncio and the standard library. If it does something surprising, you can go read why.
  • No accounts, by design. No tokens, no signup, no database. You control who can reach it at the firewall instead.
  • Fast where it counts. A tunnel to a nearby server is a single hop, so latency stays low for interactive use and demos.

Features

  • HTTP and WebSocket tunneling over a single outbound connection
  • A random, friendly subdomain per tunnel (for example funny-otter.viaduct.sh), freed on disconnect
  • Automatic public TLS via Caddy and Let's Encrypt (DNS-01 wildcard)
  • Graceful drain on server restart and automatic client reconnect with backoff
  • A per-source-IP tunnel cap as an abuse safeguard for a no-auth server
  • Self-update tracking PyPI releases, off by default

Install

Requires Python 3.11 or newer. pipx keeps the CLI in its own isolated environment and puts viaduct on your PATH:

pipx install viaduct-sh

The PyPI distribution is named viaduct-sh (the bare viaduct name was already taken), and it installs both the viaduct client and the viaductd server. To track the latest commit instead of a release, install straight from git with pipx install git+https://github.com/webmull/viaduct.

The client targets the hosted viaduct.sh server by default, so you can go straight to:

viaduct http 8080

Usage

Point viaduct http at any local port. It prints a public HTTPS URL and forwards traffic to that port until you stop it with Ctrl+C:

viaduct http 8080
# tunnel up: https://funny-otter.viaduct.sh → http://127.0.0.1:8080

The client dials out, so it never needs your machine's IP or any open inbound port. If nothing is listening on the port yet, it warns but still opens the tunnel, and serves 502 until your app comes up.

Options

Option Default Description
--server host:port viaduct.sh:4443 The viaductd server to dial
--region lon|nyc|sg|syd|blr none Pick a server region (shortcut for --server)
--tls / --no-tls on, off for localhost TLS to the tunnel port
--tls-ca PATH none Extra CA bundle to trust (for a self-signed server)
--pool-size N 40 Idle data connections kept ready for incoming requests
--inspect off Log each request: method, path, status, and time
--pin off Keep the same public URL across reconnects (stable subdomain)
--host-header HOST off Rewrite the Host header your app sees (e.g. localhost), for dev servers that reject unknown hosts
--basic-auth USER:PASS off Require HTTP Basic auth. Omit :PASS to be prompted for the password
--bearer TOKEN off Require an Authorization: Bearer TOKEN header
--allow-ip CIDR off Only allow these addresses. Single IPs or CIDRs; repeat the flag or comma-separate
--auth-message TEXT default Message shown on the 401 page when credentials are missing or wrong
--deny-message TEXT default Message shown on the 403 page when an address is not on the allowlist
--auth-realm NAME viaduct Realm shown in the browser's Basic-auth prompt

By default every reconnect gets a fresh random URL. --pin keeps the same URL for a given local port across reconnects, which is handy for a webhook endpoint or a long-lived demo. The name is still server-assigned (you can't choose the string); it is derived from a random secret stored once at ~/.config/viaduct/pin.key, so it stays stable without any server-side state.

Flags can live in ~/.config/viaduct/config.toml instead:

server = "my-server.example.com:4443"
# tls  = true                 # override the on-except-localhost default if needed
# host_header = "localhost"   # rewrite the Host header sent to your local app

Some dev servers (Vite, Next.js, Django, Rails, …) keep an allow-list of hostnames and reject a request whose Host is the public tunnel URL with an error like "Invalid Host header" or "Blocked request". --host-header localhost makes your app see the request as if it arrived on localhost, so it stops rejecting them, while visitors still use the public URL.

Protecting a tunnel

By default a tunnel is public: anyone with the URL can reach your local app. Put a gate in front of it with one or more of --basic-auth, --bearer, and --allow-ip:

viaduct http 3000 --basic-auth alice:secret   # HTTP Basic prompt in the browser
viaduct http 3000 --basic-auth alice           # omit :PASS and you're prompted for it
viaduct http 3000 --bearer $TOKEN              # for APIs and webhooks
viaduct http 3000 --allow-ip 203.0.113.4 --allow-ip 10.0.0.0/8

Checks run on the server, at the edge: an unauthorised request is answered with a branded 401/403 and never reaches your machine. Only hashes of the password and token leave your machine (in the opening handshake), never the plaintext, so you can also keep them out of your shell history:

export VIADUCT_BASIC_AUTH=alice:secret     # or VIADUCT_BEARER=…
viaduct http 3000                          # picks them up automatically

or put basic_auth = "alice:secret" in ~/.config/viaduct/config.toml.

Customise the pages visitors see with --auth-message (401) and --deny-message (403), and the browser prompt's realm with --auth-realm.

What this is, and isn't. It's access control for sharing, so the right people get in and everyone else gets a clean "no", not a DDoS shield. The IP allowlist reads the real visitor address from the trusted front (Caddy) in front of viaductd. If you run your own server with no such front, pass --trust-peer-ip to viaductd so it reads the direct socket address instead; on the hosted viaduct.sh servers this is already handled for you.

Managing tunnels

Each viaduct http runs in its own process. To see and stop the tunnels you have open on this machine, from any shell:

viaduct list                 # name, port, URL, uptime, pid
viaduct kill funny-otter     # stop one by name (or pid)
viaduct kill --all           # stop them all

These are machine-local: they only see the tunnels you started on this box.

From your code

Open a tunnel without the CLI. Handy for tests that need a real public URL (webhooks) and for scripts.

import viaduct

async with viaduct.tunnel(8080) as t:      # async
    print(t.url)                           # https://funny-otter.viaduct.sh

with viaduct.tunnel_sync(8080) as t:       # sync (scripts, notebooks)
    print(t.url)

Installing viaduct-sh also registers a pytest fixture, viaduct_tunnel, that gives a test a real public URL and tears it down afterwards:

def test_stripe_webhook(viaduct_tunnel):
    url = viaduct_tunnel(8000)             # your local test server is now public
    stripe.WebhookEndpoint.create(url=url + "/hook")
    ...                                    # torn down automatically

There is a Node client too (zero dependencies), published as viaduct-sh on npm and living in node/:

import { tunnel } from "viaduct-sh";
const t = await tunnel(3000);
console.log(t.url);
// or, no install:  npx viaduct-sh 3000

Run your own server

The client defaults to the hosted viaduct.sh, but the point of viaduct is that you run your own. One Ubuntu droplet runs Caddy (public HTTPS) and viaductd. This is the condensed path; deploy/setup.md has the exhaustive version, and you can rehearse the exact same script locally first with deploy/local/.

1. Create a droplet and point DNS at it. An Ubuntu 24.04 droplet with 1 GB of RAM is plenty.

A      your-domain.com    -> <droplet-ip>
CNAME  *.your-domain.com  -> your-domain.com

Create a DigitalOcean API token with DNS write scope. It is used for ACME DNS-01 wildcard certificates and lives only on the droplet, never in the repo.

2. Provision it (as root).

apt update && apt install -y git
git clone https://github.com/webmull/viaduct /opt/viaduct
BASE_DOMAIN=your-domain.com /opt/viaduct/deploy/provision.sh

The script prompts for the API token (input hidden) and validates it against the DigitalOcean API before continuing, so a bad paste fails immediately instead of turning into a certificate loop. It then installs the CLIs, downloads Caddy prebuilt with the DigitalOcean DNS plugin (no Go build, so no out-of-memory on a small box), creates the service users, writes the Caddyfile and systemd units, tunes limits, opens the firewall, and starts everything. viaductd comes up once Caddy has the wildcard certificate, a minute or two on first boot.

3. Connect. Point the client at your server and open a tunnel:

viaduct http 3000 --server your-domain.com:4443

There is no auth, so restrict the tunnel port to trusted IPs at the firewall if that matters:

ufw delete allow 4443/tcp
ufw allow from <your-ip> to any port 4443 proto tcp

viaductd drains active connections gracefully on restart, so systemctl restart viaductd and the monthly certificate refresh are safe during live traffic.

How it works

visitor ──HTTPS──▶ Caddy ──▶ viaductd ──tunnel──▶ viaduct ──▶ your app
(public)           (TLS)     (server)   (1 hop)   (client)    127.0.0.1:8080

The client opens one control connection to the server and keeps a small pool of idle data connections ready. When a request arrives, the server hands it to a free data connection, and the client splices it to your local port as raw bytes. There is no HTTP parsing or multiplexing on the tunnel itself, which keeps the code small and the path fast. The pool grows under bursts and drains back down when they pass.

Updating

viaduct --version
viaduct upgrade          # reinstall the latest release from PyPI

viaduct upgrade reinstalls the latest viaduct-sh release from PyPI via pipx. On an interactive terminal the client also prints a one-line notice, at most once a day, when a newer release is out (silence it with VIADUCT_NO_UPDATE_CHECK=1). Automatic upgrades are off by default; set VIADUCT_AUTO_UPGRADE=1 (or auto_upgrade = true in config.toml) to have the client jump to the latest release on startup.

Development

git clone https://github.com/webmull/viaduct && cd viaduct
python3 -m venv .venv && . .venv/bin/activate
pip install -e .

python -m pytest          # tests
python -m ruff check      # lint

Everything can run on one machine, no TLS, base domain localhost:

# server: public traffic on :8080, tunnel connections on :4443
viaductd --base-domain localhost

# in another shell: expose something and open a tunnel to the local server
python3 -m http.server 3000
viaduct http 3000 --server 127.0.0.1:4443

# reach it through the tunnel (pass the Host header the client printed)
curl -H 'Host: funny-otter.localhost' http://127.0.0.1:8080/

Scope and non-goals

viaduct is intentionally minimal and means to stay that way. It does not aim to be a hosted multi-tenant service, it does not multiplex many streams over one connection, it has no user accounts or dashboards, and it targets a single server serving a handful of trusted users rather than a global edge network. If you need those, ngrok and frp exist and do them well.

Releasing

To promote a commit to the stable channel, bump version in pyproject.toml (that string, read at the stable ref, is how clients decide they are behind), then move the tag:

git tag -f stable <commit>
git push -f origin stable

License

Released under the MIT License.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

viaduct_sh-1.4.1.tar.gz (68.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

viaduct_sh-1.4.1-py3-none-any.whl (52.1 kB view details)

Uploaded Python 3

File details

Details for the file viaduct_sh-1.4.1.tar.gz.

File metadata

  • Download URL: viaduct_sh-1.4.1.tar.gz
  • Upload date:
  • Size: 68.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for viaduct_sh-1.4.1.tar.gz
Algorithm Hash digest
SHA256 82717c5383dcbb656138d795629e94cd825aad1e107ba91abc51352ce251bfc1
MD5 2e890d00538936bbebd8d71d00efd791
BLAKE2b-256 c1df3f73fba08311fc7d31c81d4caa56009d7a9d91c7724ec8bd5b4b732f3a56

See more details on using hashes here.

Provenance

The following attestation bundles were made for viaduct_sh-1.4.1.tar.gz:

Publisher: publish.yml on webmull/viaduct

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file viaduct_sh-1.4.1-py3-none-any.whl.

File metadata

  • Download URL: viaduct_sh-1.4.1-py3-none-any.whl
  • Upload date:
  • Size: 52.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for viaduct_sh-1.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 01ca278e86d79e680d796034e638dbf6ef614df5714878da781da54bb20bce68
MD5 d0974f2cef0ad7367c3797dfdf22e2b5
BLAKE2b-256 0b220e4c4862e58df66e6bfbd547459fff4bc428cb66db0bbcdffe768f838791

See more details on using hashes here.

Provenance

The following attestation bundles were made for viaduct_sh-1.4.1-py3-none-any.whl:

Publisher: publish.yml on webmull/viaduct

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page