darkirc-clearnet.toml 964 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. ## List of channels to autojoin for new client connections
  2. autojoin = [
  3. "#dev",
  4. "#memes",
  5. "#philosophy",
  6. "#markets",
  7. "#math",
  8. "#random",
  9. "#lunardao",
  10. ]
  11. ## P2P network settings
  12. [net]
  13. ## Path to the P2P datastore
  14. datastore = "~/.local/share/darkfi/darkirc"
  15. ## Path to a configured hostlist for saving known peers
  16. hostlist = "~/.local/share/darkfi/darkirc/p2p_hostlist.tsv"
  17. ## Whitelisted transports for outbound connections
  18. allowed_transports = ["tcp+tls"]
  19. ## Addresses we want to advertise to peers
  20. external_addrs = ["tcp+tls://MY_IP_V4:26661", "tcp+tls://MY_IP_V6:26661", "tcp+tls://my.resolveable.address:26661"]
  21. ## Seed nodes to connect to
  22. seeds = ["tcp+tls://lilith1.dark.fi:5262"]
  23. ## P2P accept addresses
  24. inbound = ["tcp+tls://0.0.0.0:26661", "tcp+tls://[::]:26661"]
  25. ## Outbound connection slots
  26. outbound_connections = 8
  27. ## Inbound connection slots
  28. inbound_connections = 64
  29. ## Transports to be mixed
  30. mixed_transports = []