Questions tagged [localtunnel]

Local tunnel helps you to share localhost web servers to the rest of the world

Local tunnel helps you to share localhost web servers to the rest of the world

65 questions
1
vote
2 answers

LocalTunnel randomly crashes and subdomain no longer works

I have a server that runs via Node on my machine. It runs when my pc starts up under a custom subdomain using lt --subdomain mydomain --port 3000 I noticed that it started to randomly crash after about 6 hours. I put this down to either the node…
Mathias
  • 73
  • 1
  • 8
1
vote
1 answer

localtunnel not generating url string on Windows 10

I have followed this guide in setting up my localtunnel: https://www.hongkiat.com/blog/accessible-local-web-server/ however, when I run the following command lt –port 80 nothing is showing. I started looking for this solution since Facebook seems to…
Sab
  • 74
  • 5
1
vote
2 answers

how to fix 'tunnel server offline: Request failed with status code 502' error of localtunnel

I am setting up a microservice. The code is working fine on localhost. To make it accessible to the other computers too I tried npm's localtunnel. Sometimes it used to give 404 error but it was working fine for straight 2 days. But suddenly It…
1
vote
2 answers

Can localtunnel services like ngrok see your source code?

I'm using a local server for django dev and ngrok tunnel for webhooks. I've seen other localtunnel services like serveo. Can these services see your source code? Are they forwarding your local files to the ngrok server or just handling requests on a…
djangodev
  • 363
  • 5
  • 15
1
vote
2 answers

Localtunnel on ASP.NET Core comes with error 504 Gateway Time-out

I'am trying to run my ASP.NET Core localhost app with localtunnel for debugging purpose. And I'm running my ASP Core with Kestrel (I've tried to run it trough IIS too, same result) and enter this command on cmd "-p 5001 -s someName -o" and comes…
stanimirsp
  • 2,548
  • 2
  • 26
  • 36
1
vote
0 answers

Getting error in requesting a tunnel to local server using localtunnel?

Error: connection refused: localtunnel.me:37244 (check your firewall settings) your url is: https://pretty-skun-91.localtunnel.me /usr/lib/node_modules/localtunnel/bin/client:65 throw err; ^ Error: connection refused:…
1
vote
0 answers

tunnelling and normal http server on the same server

I am using go-http-tunnel for local tunneling. My server domain is let's say xyz.com, clients connect to *.xyz.com. What I want to achieve is use xyz.com for normal apache server and subdomain.xyz.com for tunneling.(I want to achive it using only…
BanguluruKtm
  • 21
  • 1
  • 3
1
vote
0 answers

Laravel and Local Tunnel integration

My idea was to use Local Tunnel's subdomain feature to expose callback URI in a more convenient way. However, I believe that I could've achieved the same results in a simper way. This is the solution with Laravel Valet: In package.json I've added a…
1
vote
2 answers

Localtunnel is not setting up the requested subdomain from the command 'lt --port 4000 --subdomain xyz'

I have been trying to set the subdomain in localtunnel, but it keeps throwing me different subdomains. Port number is 4000 and it's running. The command which I used : lt --port 4000 --subdomain xyz (I changed subdomain name for the…
Coder
  • 540
  • 1
  • 11
  • 34
1
vote
2 answers

How to POST request while exposing localhost using localtunnel

I'm using node js as server. Do i have to configure index.js file while using localtunnel? While submitting form, which URL do I have to specify? should i use URL provided by localtunnel.
Black Heart
  • 649
  • 1
  • 7
  • 19
1
vote
0 answers

Access client machines from public server in mutli tenant setup

In one line: How to connect multiple on-premise clients installations having private IP & behind a firewall to a public cloud hosted server and able to call HTTP endpoint & SSH in any of the on-premise clients setup from server. Details: We've…
manikanta
  • 8,100
  • 5
  • 59
  • 66
1
vote
0 answers

Error installing local tunnel

I get this error when installing localtunnel: sudo gem install localtunnel [sudo] password for anr: ERROR: Could not find a valid gem 'localtunnel' (>= 0) in any repository ERROR: Possible alternatives: localone, rack-tunnel This is what I get…
vamsiampolu
  • 6,328
  • 19
  • 82
  • 183
1
vote
1 answer

Is there way to keep an application running on a Linux server?

I am using Ngrok (https://ngrok.com/) application on my Godaddy Linux server to create a local-tunnel to my host. However, I access the server through SSH and run the application but when I exit from the SSH connection the application stops…
DeadManSpirit
  • 2,036
  • 2
  • 20
  • 27
1
vote
1 answer

Getting all kinds of weird POST requests over localtunnel

I'm developing a Rails app on my local machine right now and I've put it on localtunnel a number of times today. Each time I do, I get a whole bunch of strange POST requests to my server. Some…
Andrew
  • 2,425
  • 2
  • 24
  • 35
0
votes
0 answers

Is it possible to encrypt and send messages with localtunnel without socket programming for a chat application?

for a project I wanted to create a peer2peer chat program that encrypts the data that's being sent, of course my first thought was to use socket programming (I'm using python). But after I created a program that succesfully sends and encrypts…