ircd_config.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. ## JSON-RPC listen URL
  2. #rpc_listen="tcp://127.0.0.1:11055"
  3. ## IRC listen URL
  4. #irc_listen="tcp://127.0.0.1:11066"
  5. ## Sets Datastore Path
  6. #datastore="~/.config/darkfi/ircd"
  7. ## List of channels to autojoin for new client connections
  8. autojoin = ["#dev"]
  9. ## Raft net settings
  10. [net]
  11. ## P2P accept addresses
  12. #inbound=["tls://127.0.0.1:11002"]
  13. ## Connection slots
  14. outbound_connections=5
  15. ## P2P external addresses
  16. #external_addr=["tls://127.0.0.1:11002"]
  17. ## Peers to connect to
  18. #peers=["tls://127.0.0.1:11003"]
  19. ## Seed nodes to connect to
  20. seeds=["tls://irc0.dark.fi:11001", "tls://irc1.dark.fi:11001"]
  21. # Prefered transports for outbound connections
  22. #transports = ["tls", "tcp"]
  23. ## these are the default configuration for the p2p network
  24. #manual_attempt_limit=0
  25. #seed_query_timeout_seconds=8
  26. #connect_timeout_seconds=10
  27. #channel_handshake_seconds=4
  28. #channel_heartbeat_seconds=10
  29. ## Per-channel settings
  30. #[channel."#dev"]
  31. ## Create with `ircd --gen-secret`
  32. #secret = "7CkVuFgwTUpJn5Sv67Q3fyEDpa28yrSeL5Hg2GqQ4jfM"
  33. ## Topic to set for the channel
  34. #topic = "DarkFi Development HQ"