Ngrok
Hello, I've installed typebot by a docker-compose.yml file, and I'm trying to use Ngrok to make my development environment public to test, but when I sign-in, the application stops to use the public url created by Ngrok and uses the localhost url instead.
Can someone help me?
5 Replies
Or if theres another tools than Ngrok that can I use for the same purpose
can you share yout docker-compose file?
Sure
BASE_URL=https://<seu_subdominio>.ngrok.io
VIEWER_URL=https://<seu_subdominio>.ngrok.io/viewer
in .env
Check the logs of your services to identify if there are any error messages indicating why the application is reverting to the localhost URL.
docker-compose logs -f
As an alternative, you can set up a reverse proxy (such as Nginx) to forward requests to the correct service using the Ngrok public URL
Thanks, worked