0 tunnels 0 requests

No active tunnels

Start a tunnel from your terminal:

ssh -R myapp:80:localhost:3000 yourdomain.com -p 2222

Your local site will be available at https://myapp.yourdomain.com

Usage

Basic HTTP tunnel

ssh -R myapp:80:localhost:3000 \
    yourdomain.com -p 2222

Keep alive (no timeout)

ssh -R myapp:80:localhost:3000 \
    -o ServerAliveInterval=60 \
    yourdomain.com -p 2222

Skip host key check (first run)

ssh -R myapp:80:localhost:3000 \
    -o StrictHostKeyChecking=no \
    yourdomain.com -p 2222

Multiple tunnels

ssh -R app1:80:localhost:3000 \
    -R app2:80:localhost:4000 \
    yourdomain.com -p 2222