如何使ngrok客户端监听特定的主机名而不是localhost?

时间:2019-10-09 10:23:58

标签: ngrok

我的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

非常感谢!

1 个答案:

答案 0 :(得分:1)

解决方法:

  yarn:
    hostname: "ngrok.xfl.me:810"
    remote_port: 810 
    proto: 
      tcp: 192.168.0.104:8088