I’m trying to expose my project from development environment under the company real domain. I need this because I cannot distribute changes out of release cycle. I need to test an additional project running under a subdomain and cpesifically usage of cookies.
For this purpose I set ngrok custom domain with which I exposed my project running on localhost. I use this command
ngrok http --domain=test.ngrok.test 3500
All this worked and I can browse my application over the internet.
Next I want to setup a DNS record. For this purpose I set the following entry
test.company.com CNAME test.ngrok.test
The problem is that now ngrok compains with error:
ERR_NGROK_3200
tunel test.company.com not found
Anyone have an idea what to do from here. I think obviously this is not going to be a solution because ngrok wants to setup the tunnel for itself, but I can not use the company domain in ngrok itself.