Last active
November 3, 2023 17:32
-
-
Save maximiliano/b69906e513e5b6860327d821bc0578af to your computer and use it in GitHub Desktop.
This file contains 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
# Create 3 tunnels, each for different ports, with only https enabled | |
# This way the ngrok process stays bellow the Free plan limit (4 tunnels) | |
authtoken: ... | |
log: ngrok.log | |
tunnels: | |
first: | |
addr: 3000 | |
proto: http | |
bind_tls: true | |
second: | |
addr: 8000 | |
proto: http | |
bind_tls: true | |
third: | |
addr: 9999 | |
proto: http | |
bind_tls: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If I have t his active, how can anyone connect to my ngrok server, the hostname seem not showing and port to connect to.