Go ahead and bookmark this page. It's yours now.
Here's some ways you can use it:
telebit http 3000                # forward all https traffic to localhost:3000
telebit http /path/to/module     # handle incoming https traffic with a node module
telebit http none                # remove all https handlersYou can always use this port for SSH over HTTPS, even while you're using it for something else:
ssh -o ProxyCommand='openssl s_client -connect %h:443 -quiet' {{servername}}Here's some ways you can use it:
telebit tcp 3000                 # forward all tcp traffic to localhost:3000
telebit tcp /path/to/module      # handle incoming tcp traffic with a node module
telebit tcp none                 # remove all tcp handlersYou can always use this port for SSH, even while you're using it for something else:
ssh {{servername}} -p {{serviceport}}