Skip to content

Instantly share code, notes, and snippets.

@caiusCitiriga
Forked from ma7dev/ngrok.yml
Created August 22, 2022 12:15
Show Gist options
  • Save caiusCitiriga/b719327c7ea049e76fbb1f4dfe91a28a to your computer and use it in GitHub Desktop.
Save caiusCitiriga/b719327c7ea049e76fbb1f4dfe91a28a to your computer and use it in GitHub Desktop.
Ngrok, running multiple ports at once (works for free version)
# Create 4 tunnels, each for different ports, with only https enabled
# This way the ngrok process stays bellow the Free plan limit (4 tunnels)
# command: ngrok start --all # to start all of them
# command: ngrok start note tb # to run jupyter notebook server and tensorboard server only
# refer to this page for more info: https://ngrok.com/docs#multiple-tunnels
authtoken: ...
log: ngrok.log
tunnels:
# to run jupyter notebook server
note:
addr: 7111
proto: http
bind_tls: true
# to run visdom server
visdom:
addr: 8097
proto: http
bind_tls: true
# to run tensorboard server
tb:
addr: 6006
proto: http
bind_tls: true
# just an extra port available for any usage
other:
addr: 6969
proto: http
bind_tls: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment