ircd_config.toml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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"]
  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"