Live data from Hacker News

Localtunnel.me

localtunnel.me

21–30 of 51 posts

Re: Localtunnel.me

#24

I'm confused, there is an existing project called localtunnel that does exactly the same thing and dominates search results for "localtunnel". At the very least, pick a different name. http://progrium.com/localtunnel/

Yeah, that's what I thought this was at first. Naming it the same as an existing project with the same purpose is negligent at best.

Re: Localtunnel.me

#25
If you have a VPS, why not set up a subdomain to proxy localhost connections forwarded through SSH? (e.g., $ ssh -R 8000:localhost:80)

I'm sure I'm missing some obvious disadvantage…

Re: Localtunnel.me

#26
Personally I would rather just use "ssh -R", the built in remote port forwarding. You either need to flip a setting on the server to allow listening on an interface besides localhost, or configure Nginx/etc as a reverse proxy.

For example:

ssh -f -N -q -R 2222:localhost:22 my_name@remote.example.com

Decent writeup here:

http://www.noah.org/wiki/SSH_tunnel

Re: Localtunnel.me

#27

You can also use ngrok.com which has been around for quite a while. The developer even responds very quickly to support requests. As a bonus, you also get: - Custom (sub) domains - TLS tunnels if you want, not mandatory - Other protocols than just HTTP/S

+1, I am a huge fan of ngrok. :)

Re: Localtunnel.me

#29
post #7

Earlier quoted context omitted.

Jeff's localtunnel has been discontinued in favor of Ngrok. It was discontinued in the middle of a transition from ruby to python.

Is there a writeup somewhre of what happened? localtunnel v1 worked perfectly for me, localtunnelv2 never did (apparently no remote server was ever up) but it's weird that ngrok is a ruby project again.

ngrok is a Go project and has not changed
Post reply on HN