Skip to content

Instantly share code, notes, and snippets.

@bdmorin
Forked from byllc/diy-ngrok.md
Created April 20, 2017 22:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bdmorin/6f2778c687edae7edbd72a090c833a9f to your computer and use it in GitHub Desktop.
Save bdmorin/6f2778c687edae7edbd72a090c833a9f to your computer and use it in GitHub Desktop.
This does something essentially equivalent to showoff.io if you have a publicly facing server...

This is basically diy ngrok

Usage: show

function show() {
    DOMAIN=".example.com"
    REMOTE="$2$DOMAIN"
    ssh -tR 1080:127.0.0.1:$1 vps "sudo ssh -Nl \$USER -L $REMOTE:80:127.0.0.1:1080 localhost"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment