App Services and ngrok

0
For development purposes, I use ngrok to open up a public URL to my development Mendix instance.  I find this useful for testing things like webhooks when integrating with other services via APIs.  Recently, I have tried to used this with a Mendix published app service (that I created in my app), and I can’t get it working.  Anyone else have experience with this?  Is there any way to change my configuration so that I can use ngrok with Mendix app services?  It would make my development work go a whole lot faster…..
asked
1 answers
2

I use ngrok as well (really easy; just execute C:\Program Files\ngrok.exe http 8080) or use a nodejs ssl proxy https://www.npmjs.com/package/local-ssl-proxy and start like this: local-ssl-proxy --source 9090 --target 8080

answered