darkirc-tor.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. ## connection settings
  18. outbound_connect_timeout = 60
  19. channel_handshake_timeout = 55
  20. channel_heartbeat_interval = 90
  21. outbound_peer_discovery_cooloff_time = 60
  22. ## Whitelisted transports for outbound connections
  23. allowed_transports = ["tor", "tor+tls"]
  24. ## Addresses we want to advertise to peers
  25. external_addrs = ["tor://youraddress.onion:25551"]
  26. ## Seed nodes to connect to
  27. seeds = [
  28. "tor://czzulj66rr5kq3uhidzn7fh4qvt3vaxaoldukuxnl5vipayuj7obo7id.onion:5263",
  29. "tor://vgbfkcu5hcnlnwd2lz26nfoa6g6quciyxwbftm6ivvrx74yvv5jnaoid.onion:5273",
  30. ]
  31. ## P2P accept addresses
  32. inbound = ["tcp://127.0.0.1:25551"]
  33. ## Outbound connection slots
  34. outbound_connections = 8
  35. ## Inbound connection slots
  36. inbound_connections = 64
  37. ## Transports to be mixed
  38. mixed_transports = []