Skip to content

Instantly share code, notes, and snippets.

@mudssrali
Created September 16, 2020 10:49
Show Gist options
  • Save mudssrali/acfb8b57e5847c7308e1064a739971da to your computer and use it in GitHub Desktop.
Save mudssrali/acfb8b57e5847c7308e1064a739971da to your computer and use it in GitHub Desktop.
Install ngrok on Ubuntu
$ sudo apt-get update
$ sudo apt-get install unzip wget
$ wget https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-linux-amd64.zip
$ unzip ngrok-stable-linux-amd64.zip
$ sudo mv ./ngrok /usr/bin/ngrok
$ ngrok

Connect Account

ngrok authtoken <your_auth_token>

Fire It Up

$ ngrok help
$ ngrok http 8080
@mudssrali
Copy link
Author

mudssrali commented Feb 1, 2023

For ngrok v3

$ wget https://bin.equinox.io/c/bNyj1mQVY4c/ngrok-v3-stable-linux-amd64.tgz
$ unzip ngrok-v3-stable-linux-amd64.tgz

Connect Account

$ ngrok add-authtoken <your_auth_token>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment