You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The equivalent "all" interface to `0.0.0.0` for IPv6 is `::`; this
_includes_ IPv4's `0.0.0.0`. In other words, this should be fully
backward compatible.
Signed-off-by: Jo Vandeginste <[email protected]>
Copy file name to clipboardExpand all lines: documentation/configure.markdown
+3-3
Original file line number
Diff line number
Diff line change
@@ -623,7 +623,7 @@ The `[jetty]` section configures HTTP for PuppetDB.
623
623
Sets the IP interface to listen on for **unencrypted** HTTP
624
624
traffic. If not supplied, we bind to `localhost`, which will reject
625
625
connections from anywhere but the PuppetDB server itself. To listen on
626
-
all available interfaces, use `0.0.0.0`.
626
+
all available interfaces, use `::`.
627
627
628
628
To avoid DNS resolution confusion, if you wish to set this to something other than `localhost`, we reccomend using an IP address instead of a hostname.
629
629
@@ -654,7 +654,7 @@ can be made at one time. Defaults to 50.
654
654
655
655
Sets which IP interface to listen on for **encrypted** HTTPS traffic. If
656
656
not supplied, we bind to `localhost`. To listen on all available
657
-
interfaces, use `0.0.0.0`.
657
+
interfaces, use `::`.
658
658
659
659
To avoid DNS resolution confusion, if you wish to set this to something other than `localhost`, we reccomend using an IP address instead of a hostname
660
660
@@ -821,7 +821,7 @@ Specifies the host or IP address for the REPL service to listen on. By
821
821
default this is `127.0.0.1` only. As this is an insecure channel this
822
822
is the only recommended setting for production environments.
823
823
824
-
If you wish to listen on all interfaces, you can specify `0.0.0.0`, for example, although this is generally not recommended for production.
824
+
If you wish to listen on all interfaces, you can specify `::`, for example, although this is generally not recommended for production.
0 commit comments