ircd_config.toml 936 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. ## List of channels to autojoin for new client connections
  6. autojoin = ["#dev"]
  7. ## P2P net settings
  8. [net]
  9. ## P2P accept address
  10. #inbound="tls://127.0.0.1:11002"
  11. ## Connection slots
  12. outbound_connections=5
  13. ## P2P external address
  14. #external_addr="tls://127.0.0.1:11002"
  15. ## Peers to connect to
  16. #peers=["tls://127.0.0.1:11003"]
  17. ## Seed nodes to connect to
  18. seeds=["tls://irc0.dark.fi:11001", "tls://irc1.dark.fi:11001"]
  19. ## these are the default configuration for the p2p network
  20. #manual_attempt_limit=0
  21. #seed_query_timeout_seconds=8
  22. #connect_timeout_seconds=10
  23. #channel_handshake_seconds=4
  24. #channel_heartbeat_seconds=10
  25. ## Per-channel settings
  26. #[channel."#dev"]
  27. ## Create with `ircd --gen-secret`
  28. #secret = "7CkVuFgwTUpJn5Sv67Q3fyEDpa28yrSeL5Hg2GqQ4jfM"
  29. ## Topic to set for the channel
  30. #topic = "DarkFi Development HQ"