ircd_config.toml 983 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. ## JSON-RPC listen URL
  2. #rpc_listen="tcp://127.0.0.1:11055"
  3. ## IRC listen URL
  4. #irc_listen="127.0.0.1:11066"
  5. ## Sets Datastore Path
  6. #datastore="~/.config/ircd"
  7. ## List of channels to autojoin for new client connections
  8. autojoin = ["#dev"]
  9. ## Raft net settings
  10. [net]
  11. ## P2P accept address
  12. #inbound="tls://127.0.0.1:11002"
  13. ## Connection slots
  14. outbound_connections=5
  15. ## P2P external address
  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. ## these are the default configuration for the p2p network
  22. #manual_attempt_limit=0
  23. #seed_query_timeout_seconds=8
  24. #connect_timeout_seconds=10
  25. #channel_handshake_seconds=4
  26. #channel_heartbeat_seconds=10
  27. ## Per-channel settings
  28. #[channel."#dev"]
  29. ## Create with `ircd --gen-secret`
  30. #secret = "7CkVuFgwTUpJn5Sv67Q3fyEDpa28yrSeL5Hg2GqQ4jfM"
  31. ## Topic to set for the channel
  32. #topic = "DarkFi Development HQ"