Documentation Index
Fetch the complete documentation index at: https://mintlify.com/KarChunT/karchunt.com/llms.txt
Use this file to discover all available pages before exploring further.
Ngrok creates a secure tunnel from a public URL to your local server, making it easy to share work in progress, test webhooks, or demo applications.
Create a free account at
ngrok.com to get your auth token.
Claim a free subdomain (Optional)
Ngrok allows you to claim one free static subdomain from your dashboard.
Download and install Ngrok
Download the package for your OS, then extract and install it:
tar -xvzf ngrok-v3-stable-linux-amd64.tgz
Optionally, copy it to /usr/local/bin to make it available system-wide:
Authenticate Ngrok with your auth token:
ngrok config add-authtoken <auth-token>
The auth token is saved to ~/.config/ngrok/ngrok.yml.
Forward traffic to your local server:
ngrok http 80
# With a custom domain (if you claimed one)
ngrok http --domain=<domain-name> 80
Open the URL shown in the Ngrok terminal output (or your custom domain) in any browser. Your local server is now publicly accessible.