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 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)

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

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.0.1.tar.gz (50.4 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.0.1-py3-none-any.whl (37.3 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: viaduct_sh-1.0.1.tar.gz
  • Upload date:
  • Size: 50.4 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.0.1.tar.gz
Algorithm Hash digest
SHA256 a41b7f5b8ecbffb48159cd0c0b0c077a382b14f05d4d589255f1123351ec9980
MD5 27d30c8523773ca5fd8135f3421f84b6
BLAKE2b-256 64c3d41242f6f497b562089301b7abd652d6b1bca6e097cbf2ad6b027b9b5e53

See more details on using hashes here.

Provenance

The following attestation bundles were made for viaduct_sh-1.0.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.0.1-py3-none-any.whl.

File metadata

  • Download URL: viaduct_sh-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 37.3 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.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b581a6384b0311a5be7e0f3aa2b1d3d964267610aca847c369308d15b420e0d2
MD5 32d6f8832e1314501cc45263f749e0fa
BLAKE2b-256 4a07ed2bc501437ce28de61c810a737faca49bfbc83938418745d2e1e16fa444

See more details on using hashes here.

Provenance

The following attestation bundles were made for viaduct_sh-1.0.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