Last active
August 17, 2024 16:10
-
-
Save Elandlord/21d15a2c74767af6015a844837f06dbe to your computer and use it in GitHub Desktop.
For starting ngrok with your custom local domain (Free plan)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ngrok http -host-header=[your-custom-local-domain] [port] |
correction (need double hyper before host , now -host , should be --host)
ngrok http --host-header=[your-custom-local-domain] [port]
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for the little piece of code.
I spent hours searching for the right solution.