Skip to content

Instantly share code, notes, and snippets.

@pradeepcheers
Forked from wosephjeber/ngrok-installation.md
Created August 11, 2016 11:19
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 pradeepcheers/eafb27d38e0fed4a6c2d2846ab15f215 to your computer and use it in GitHub Desktop.
Save pradeepcheers/eafb27d38e0fed4a6c2d2846ab15f215 to your computer and use it in GitHub Desktop.
Installing ngrok on Mac

#Installing ngrok on OSX

  1. Download ngrok
  2. Unzip it to your Applications directory
  3. Create a symlink (instructions below)

Creating a symlink to ngrok

Run the following two commands in Terminal to create the symlink.

# cd into your local bin directory
cd /usr/local/bin

# create symlink
ln -s /Applications/ngrok ngrok

This will allow you to run the ngrok command from any directory while in the terminal. Without the symlink, you would need to either cd into the Applications directory (or wherever you installed the executable) or reference ngrok with its full path every time (e.g. /Applications/ngrok 5000)

Using ngrok

The easiest way to use ngrok to tunnel into your localhost is if your local project is running on a specific port (e.g. not using named vhosts). You just run ngrok http [port number].

You can quickly boot up a local webserver using ruby. cd into the project's root directory and run ruby -run -e httpd . -p [port number].

@pradeepcheers
Copy link
Author

ngrok http localhost:8080

to get the tunnel link that should redirect to http://localhost:8080

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