How to specify which domain using ngrok
If you prefer a free option, it is possible via: ngrok http –host-header=site1.dev 80
If you prefer a free option, it is possible via: ngrok http –host-header=site1.dev 80
There are a couple of ways. You can either: 1) Visit localhost:4040/status in your browser to see a bunch of information, or 2) Use curl to hit the API: localhost:4040/api/tunnels
Your web server is rejecting the request since it has different hostname. Try ngrok http -host-header=”localhost:8080″
UPDATE May 2020 Serveo is up and running again! No installation, no signup! All you need to do is to run this: ssh -R <unique subdomain>:80:<your local host>:<your local port> serveo.net like ssh -R youruniquesubdomain:80:localhost:8000 serveo.net UPDATE January 2020 Since there are some issues with Serveo and localtunnel, I want to share with you another … Read more