如何让 ngrok 客户端监听特定的主机名而不是本地主机?
How to make ngrok client listen a specific hostname instead of localhost?
我的yaml配置是这样的:
yarn:
hostname: "ngrok.xfl.me:810"
remote_port: 810
proto:
tcp: 8088
我的目的是:
Forwarding https://ngrok.xfl.me:810-> 192.168.0.104:8088
但是默认情况下,如上面的配置,ngrok客户端只监听127.0.0.1
。所以连接失败。
如何让 ngrok 客户端监听某个主机名 192.168.0.104
而不是 localhost
非常感谢!
已解决:
yarn:
hostname: "ngrok.xfl.me:810"
remote_port: 810
proto:
tcp: 192.168.0.104:8088
我的yaml配置是这样的:
yarn:
hostname: "ngrok.xfl.me:810"
remote_port: 810
proto:
tcp: 8088
我的目的是:
Forwarding https://ngrok.xfl.me:810-> 192.168.0.104:8088
但是默认情况下,如上面的配置,ngrok客户端只监听127.0.0.1
。所以连接失败。
如何让 ngrok 客户端监听某个主机名 192.168.0.104
而不是 localhost
非常感谢!
已解决:
yarn:
hostname: "ngrok.xfl.me:810"
remote_port: 810
proto:
tcp: 192.168.0.104:8088