我正在通过Node.js应用程序中的net
模块创建连接:
this.stream = net.createConnection(25, host, this._onConnect);
哪种方法绝对正常,但我需要通过Proximo发送此流量,因为我的连接需要静态IP。我不熟悉net
模块,所以任何帮助都会有所帮助。
答案 0 :(得分:0)
您不需要绑定任何内容或对代码进行任何修改。据我所知,提供你绑定到proximo给你的ip地址:
$ heroku addons:add proximo:development
Adding proximo to sharp-mountain-4005⦠done, v18 ($5/mo)
Your static IP address is 127.0.0.1
您的程序将包装在proximo二进制文件中,该二进制文件通过代理路由所有TCP数据包。但是,您可以使用https://devcenter.heroku.com/articles/proximo#configuring-the-proximo-wrapper限制流量。
根据我的经验,所有的proximo设置都在heroku的命令行上。