darkirc_full_node3.toml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. ## IRC listen URL
  2. irc_listen = "tcp://127.0.0.1:22024"
  3. ## How many DAGs to be synced (each DAG represents a 1hr msg history),
  4. ## increasing this number means you get/sync previous hours msg history
  5. ## as well (max. 24)
  6. dags_count = 1
  7. ## Sets Datastore Path
  8. datastore = "darkirc3"
  9. ## List of channels to autojoin for new client connections
  10. autojoin = ["#dev", "#test"]
  11. # Log to file. Off by default.
  12. log = "/tmp/darkirc3.log"
  13. # Set log level. 1 is info (default), 2 is debug, 3 is trace
  14. #verbose = 2
  15. ## Running darkirc in header-only mode
  16. ## history won't be fetched but DAG sync fast
  17. #fast_mod = false
  18. ## JSON-RPC settings
  19. [rpc]
  20. ## JSON-RPC listen URL
  21. rpc_listen = "tcp://127.0.0.1:8892"
  22. ## Disabled RPC methods
  23. #rpc_disabled_methods = ["p2p.get_info"]
  24. # [rln]
  25. # nullifier = "H3Nuq4bCstK7629x75jJ6imw6faZUhkHx9pRL7aqTnzQ"
  26. # trapdoor = "ArxesUcNmZ8ygz9bSJP2u8MywRkL2dwG9pPegraguddC"
  27. # user_message_limit = 10
  28. ## P2P net settings
  29. [net]
  30. ## Connection slots
  31. outbound_connections = 8
  32. ## Inbound connection slots
  33. # inbound_connections = 8
  34. localnet = true
  35. hostlist = "darkirc3/hostlist.tsv"
  36. # Prefered transports for outbound connections
  37. active_profiles = ["tcp"]
  38. [net.profiles."tcp"]
  39. ## Seed nodes to connect to
  40. seeds = ["tcp://127.0.0.1:25551"]
  41. # inbound = ["tcp://127.0.0.1:25554"]
  42. # external_addrs = ["tcp://127.0.0.1:25554"]
  43. # peers = ["tcp://127.0.0.1:25552"]
  44. #
  45. # [channel."#dev"]
  46. # topic = "DarkFi Development HQ"
  47. [channel."#test"]
  48. secret = "HoLfk8vXBvNsBZ73e2xRPBZ9vEbnF9FVi4fDdyU9AZLU"