Holger just published a video that examines ngrok, and is using it to access the app inside of his dev box that's hosting the app, it's local server, and the XData service.
I have my app running on a Linux cPanel host as HTTPS://myapp.com (under Apache).
My XData service is only accessible right now on a Win Server 2016 VPS as HTTP://mysvr.com:8000 because of problems with my SSL cert. So I have to access everything using HTTP://myapp.com instead or it won't connect to the server side.
Myapp is the only thing connecting to mysvr; users don't see it.
I can NOT do this: HTTPS://myapp.com --> HTTP://mysvr:8000
I'm thinking I need: HTTPS://myapp.com --> HTTPS://...ngrok.io --> HTTP://mysvr:8000
I'm just not sure where ngrok is running. I'm thinking it's on mysvr, which means my app talks to the HTTPS side of ngrok rather than mysvr.
Any ideas on how to set up ngrok to temporarily fix this?