Don't listen to IPv6 in the example config file
Some hosts don't support IPv6, and the default (without anything in the config file) is only the IPv4 address anyway.
This commit is contained in:
parent
67c7254dc5
commit
bc22f94eeb
|
@ -31,8 +31,10 @@
|
||||||
|
|
||||||
|
|
||||||
## List of local addresses and ports to listen to. Can be IPv4 and/or IPv6.
|
## List of local addresses and ports to listen to. Can be IPv4 and/or IPv6.
|
||||||
|
## Example with both IPv4 and IPv6:
|
||||||
|
## listen_addresses = ['127.0.0.1:53', '[::1]:53']
|
||||||
|
|
||||||
listen_addresses = ['127.0.0.1:53', '[::1]:53']
|
listen_addresses = ['127.0.0.1:53']
|
||||||
|
|
||||||
|
|
||||||
## Maximum number of simultaneous client connections to accept
|
## Maximum number of simultaneous client connections to accept
|
||||||
|
|
Loading…
Reference in New Issue