Crates.io | wormhole-tunnel |
lib.rs | wormhole-tunnel |
version | 0.1.5 |
source | src |
created_at | 2020-04-04 02:24:41.7747 |
updated_at | 2020-04-25 15:58:50.688958 |
description | expose your local web server to the internet with a public url |
homepage | |
repository | https://github.com/agrinman/wormhole |
max_upload_size | |
id | 226114 |
size | 107,173 |
wormhole
lets you expose your locally running web server via a public URL.
Written in Rust. Built completely with async-io on top of tokio.
brew install agrinman/tap/wormhole
cargo install wormhole-tunnel
Or Download a release for your target OS here: wormhole/releases
⇢ wormhole start -p 8000
The above command opens a wormhole and starts tunneling traffic to localhost:8000
.
⇢ wormhole start -h
wormhole-start 0.1.4
Start the wormhole
USAGE:
wormhole start [OPTIONS] --port <port>
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
OPTIONS:
-k, --key <key> Sets an API authentication key to use for this wormhole
-p, --port <port> Sets the port to forward incoming tunnel traffic to on localhost
-s, --subdomain <sub-domain> Specify a sub-domain for this wormhole
musl_build.sh
for a way to do this trivially with Docker!Dockerfile
for a simple alpine based image that runs that server binary.# Run the Server: xpects TCP traffic on 8080 and control websockets on 5000
ALLOWED_HOSTS="localhost" ALLOW_UNKNOWN_CLIENTS=1 cargo run --bin wormhole_server
# Run a local wormhole talking to your local wormhole_server
WORMHOLE_HOST="localhost" WORMHOLE_PORT=5000 TLS_OFF=1 cargo run --bin wormhole -- start -p 8000
# Test it out!
# Remember 8080 is our local wormhole_server TCP server
curl -H '<subdomain>.localhost' "http://localhost:8080/some_path?with=somequery"
ALLOWED_HOSTS
: which hostname suffixes do we allow forwarding on
SECRET_KEY
: an authentication key for restricting access to your wormhole server
ALLOW_UNKNOWN_CLIENTS
: a boolean flag, if set, enables unknown (no authentication) clients to use your wormhole. Note that unknown clients are not allowed to chose a subdomain via -s
.
This implementation does not support multiple running servers (i.e. centralized coordination). Therefore, if you deploy multiple instances of the server, it will only work if the client connects to the same instance as the remote TCP stream.