ngrok is a globally distributed reverse proxy that secures, protects and accelerates your applications and network services, no matter where you run them. You can think of ngrok as the front door to your applications.
Follow these steps to set up and use NGROK effectively.
- Open the following link to download NGROK: NGROK Download Page
- Select your operating system and click the Download button.
Install NGROK via Snap:
snap install ngrokIf you downloaded a zip file, extract it after downloading.
- Sign in to your NGROK account.
- On the left-hand side, find the Authtoken tab and click on it.
- Copy your token from the top of the page.
- Run the following command in your terminal to configure NGROK with your token:
ngrok config add-authtoken <token>
-
Navigate to the Domains section under the Cloud Edge tab on the NGROK website.
-
Select a domain and copy it.
-
Use the following command to start a server with your custom domain:
ngrok http --domain=<your-custom-domain> 9080
-
Once NGROK is online, you will see a Forwarding link.
-
Use the forwarding link to access your application. For example:
https://(your_domanin_name_here)/(service_name)
You can monitor all incoming requests directly on your terminal or NGROK dashboard.
You're all set to use NGROK with a custom domain!




