Closed willyk0 closed 6 years ago
On certain OSes like CentOS, node creates only IPv6 sockets even if IPv6 is disabled.
On nukibridge.js, just replace:
}).bind(this)).listen(webHookServerPort)
with
}).bind(this)).listen(webHookServerPort, "0.0.0.0")
And then it forces to listen on IPv4.
Fixed with just released 0.7.7.
On certain OSes like CentOS, node creates only IPv6 sockets even if IPv6 is disabled.
On nukibridge.js, just replace:
}).bind(this)).listen(webHookServerPort)
with
}).bind(this)).listen(webHookServerPort, "0.0.0.0")
And then it forces to listen on IPv4.