darkirc-tor.toml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. # Magic Bytes to distinguish the p2p network
  14. magic_bytes = [251, 229, 199, 181]
  15. ## Path to the P2P datastore
  16. datastore = "~/.local/share/darkfi/darkirc"
  17. ## Path to a configured hostlist for saving known peers
  18. hostlist = "~/.local/share/darkfi/darkirc/p2p_hostlist.tsv"
  19. ## connection settings
  20. outbound_peer_discovery_cooloff_time = 60
  21. ## Outbound connection slots
  22. outbound_connections = 8
  23. ## Inbound connection slots
  24. inbound_connections = 64
  25. ## Whitelisted transports for outbound connections
  26. active_profiles = ["tor"]
  27. ## Transports to be mixed
  28. mixed_profiles = []
  29. [net.profiles."tor"]
  30. ## Seed nodes to connect to
  31. seeds = [
  32. "tor://g7fxelebievvpr27w7gt24lflptpw3jeeuvafovgliq5utdst6xyruyd.onion:25552",
  33. "tor://yvklzjnfmwxhyodhrkpomawjcdvcaushsj6torjz2gyd7e25f3gfunyd.onion:25552",
  34. ]
  35. ## Addresses we want to advertise to peers
  36. external_addrs = ["tor://youraddress.onion:26661"]
  37. ## P2P accept addresses
  38. inbound = ["tcp://127.0.0.1:26661"]