ngrok-skip-browser-warning
ngrok-skip-browser-warning copied to clipboard
localhost.direct.OP.crt incorrect password
When I run the sample code, the following message appears:
What should I do?
Hi @HGJsgithub,
Apologies for the delayed reply.
It looks like the maintainers of localhost.direct have changed their terms, so the certificate is no longer free (right, @Upinel?).
A quick workaround is to skip HTTPS for now (note PROXY_USE_SSL=false):
docker run -d --rm \
-p 8080:80 \
-e NGROK_HOST=https://your-ngrok-domain.ngrok.io \
-e PROXY_USE_SSL=false \
igops/ngrok-skip-browser-warning:latest
If you prefer, you can also provision your own certificates and mount them using the env variables.
ok,thank you for your reply.I will try.