ircd_config.toml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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:6667"
  5. #irc_listen="tls://0.0.0.0:6697"
  6. ## TLS certificate path if IRC acceptor uses TLS (optional)
  7. #irc_tls_cert = "/etc/letsencrypt/ircd/fullchain.pem"
  8. ## TLS secret key path if IRC acceptor uses TLS (optional)
  9. #irc_tls_secret = "/etc/letsencrypt/ircd/privkey.pem"
  10. ## List of channels to autojoin for new client connections
  11. autojoin = ["#dev", "#memes", "#philosophy", "#markets", "#math", "#random"]
  12. ## P2P net settings
  13. [net]
  14. ## P2P accept address
  15. #inbound="tls://127.0.0.1:11002"
  16. ## Connection slots
  17. outbound_connections=5
  18. ## P2P external address
  19. #external_addr="tls://127.0.0.1:11002"
  20. ## Peers to connect to
  21. #peers=["tls://127.0.0.1:11003"]
  22. ## Seed nodes to connect to
  23. seeds=["tls://irc0.dark.fi:11001", "tls://irc1.dark.fi:11001"]
  24. ## Only used for debugging. Compromises privacy when set.
  25. #node_id = "foo"
  26. ## these are the default configuration for the p2p network
  27. #manual_attempt_limit=0
  28. #seed_query_timeout_seconds=8
  29. #connect_timeout_seconds=10
  30. #channel_handshake_seconds=4
  31. #channel_heartbeat_seconds=10
  32. ## Per-channel settings
  33. #[channel."#dev"]
  34. ## Create with `ircd --gen-secret`
  35. #secret = "7CkVuFgwTUpJn5Sv67Q3fyEDpa28yrSeL5Hg2GqQ4jfM"
  36. ## Topic to set for the channel
  37. #topic = "DarkFi Development HQ"
  38. ## Contacts list
  39. # Shared secrets that encrypt direct communication between two nicknames on
  40. # the network.
  41. # These are in the form of secret:[nick0,nick1], which means that the same
  42. # shared secret will be used for all the nicknames in the list.
  43. [contact."7CkVuFgwTUpJn5Sv67Q3fyEDpa28yrSeL5Hg2GqQ4jfM"]
  44. nicks = ["sneed", "chuck"]