Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vedantwork/ngrok
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.
https://github.com/vedantwork/ngrok
Last synced: about 1 month ago
JSON representation
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.
- Host: GitHub
- URL: https://github.com/vedantwork/ngrok
- Owner: vedantwork
- Created: 2024-12-10T10:42:16.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-12-18T04:16:08.000Z (about 1 month ago)
- Last Synced: 2024-12-18T05:25:11.022Z (about 1 month ago)
- Size: 243 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
NGROK Setup
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.
---
## Step 1: Download NGROK
1. Open the following link to download NGROK: [NGROK Download Page](https://ngrok.com/download)
2. Select your operating system and click the **Download** button.---
## Step 2: Install NGROK
### For Linux Users:
Install NGROK via Snap:
```bash
snap install ngrok
```### Extract if needed:
If you downloaded a zip file, extract it after downloading.---
## Step 3: Add Authtoken
1. **Sign in** to your NGROK account.
2. On the left-hand side, find the **Authtoken** tab and click on it.
3. Copy your token from the top of the page.
4. Run the following command in your terminal to configure NGROK with your token:
```bash
ngrok config add-authtoken
```---
## Step 4: Set Up a Custom Domain
1. Navigate to the **Domains** section under the **Cloud Edge** tab on the NGROK website.
2. Select a domain and copy it.
3. Use the following command to start a server with your custom domain:
```bash
ngrok http --domain= 9080
```## Step 5: Access Your Application
1. Once NGROK is online, you will see a **Forwarding** link.
2. Use the forwarding link to access your application. For example:
```bash
https://(your_domanin_name_here)/(service_name)
```---
## Step 6: Monitor Requests
You can monitor all incoming requests directly on your terminal or NGROK dashboard.
---
You're all set to use NGROK with a custom domain!