You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default, ngrok runs a web server for debugging purposes on port 127.0.0.1:4040. This can be overridden with the web_addr config file option but there doesn't seem to be a way to set it in this library.
We're using this library in an Electron app and we don't want to be opening ports on our customers' machines they didn't expect.
The text was updated successfully, but these errors were encountered:
As you pointed out, web_addr can be set in the config file. There isn't another way to set the web_addr though. This library wraps the ngrok CLI and there isn't, for example, a CLI flag you can pass to set web_addr.
You probably want to maintain a config file for your Electron app that sets the web_addr for you.
By default,
ngrok
runs a web server for debugging purposes on port 127.0.0.1:4040. This can be overridden with theweb_addr
config file option but there doesn't seem to be a way to set it in this library.We're using this library in an Electron app and we don't want to be opening ports on our customers' machines they didn't expect.
The text was updated successfully, but these errors were encountered: