We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Commit 9fd7397 states
prefer IPv6 loopback when available (::) instead of IPv4 loopback (0.0.0.0), unless 0.0.0.0 is explicitly passed.
::
0.0.0.0
However this commit now always uses the IPv6 loopback even when the IPv4 loopback (0.0.0.0) is explicitly passed.
if (!options.hostname || options.hostname === '*' || options.hostname === '0.0.0.0') { options.hostname = '::'; }
This breaks IPv4 only environments with error:
Fatal error: listen EAFNOSUPPORT: address family not supported :::8081
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Commit 9fd7397 states
However this commit now always uses the IPv6 loopback even when the IPv4 loopback (
0.0.0.0
) is explicitly passed.This breaks IPv4 only environments with error:
The text was updated successfully, but these errors were encountered: