我的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
非常感谢!
答案 0 :(得分:1)
解决方法:
yarn:
hostname: "ngrok.xfl.me:810"
remote_port: 810
proto:
tcp: 192.168.0.104:8088