doc: add manual blacklist usage to default config

This commit is contained in:
draoi
2024-07-09 18:24:02 +02:00
parent 8ae9e42e71
commit 4cf4fa93d8
3 changed files with 18 additions and 0 deletions

View File

@@ -333,3 +333,9 @@ localnet = false
# Time between peer discovery attempts
#outbound_peer_discovery_attempt_time = 5
# Nodes to avoid interacting with for the duration of the program, in the
# format ["host", ["scheme", "scheme"], [port, port]].
# If scheme is left empty it will default to "tcp+tls".
# If ports are left empty all ports from this peer will be blocked.
#blacklist = [["example.com", ["tcp"], [8551, 23331]]]

View File

@@ -95,6 +95,12 @@ allowed_transports = ["tcp+tls"]
# By default this is not allowed.
transport_mixing = false
# Nodes to avoid interacting with for the duration of the program, in the
# format ["host", ["scheme", "scheme"], [port, port]].
# If scheme is left empty it will default to "tcp+tls".
# If ports are left empty all ports from this peer will be blocked.
#blacklist = [["example.com", ["tcp"], [8551, 23331]]]
## ====================
## IRC channel settings
## ====================

View File

@@ -60,3 +60,9 @@ allowed_transports = ["tcp+tls"]
# Allows mixing transports, e.g. tor+tls:// connecting to tcp+tls://
# By default this is not allowed.
transport_mixing = false
# Nodes to avoid interacting with for the duration of the program, in the
# format ["host", ["scheme", "scheme"], [port, port]].
# If scheme is left empty it will default to "tcp+tls".
# If ports are left empty all ports from this peer will be blocked.
#blacklist = [["example.com", ["tcp"], [8551, 23331]]]