darkwiki.toml 720 B

123456789101112131415161718192021222324252627282930313233343536
  1. ## JSON-RPC listen URL
  2. #rpc_listen="tcp://127.0.0.1:13055"
  3. ## Sets Docs Path
  4. # docs="~/darkwiki"
  5. ## Sets Author name
  6. # author="name"
  7. ## Secret Key To Encrypt/Decrypt Patches
  8. secret = "86MGNN31r3VxT4ULMmhQnMtV8pDnod339KwHwHCfabG2"
  9. ## Raft net settings
  10. [net]
  11. ## P2P accept address
  12. inbound="tls://127.0.0.1:13001"
  13. ## Connection slots
  14. outbound_connections=5
  15. ## P2P external address
  16. external_addr="tls://127.0.0.1:13001"
  17. ## Peers to connect to
  18. #peers=["tls://127.0.0.1:13003"]
  19. ## Seed nodes to connect to
  20. #seeds=[]
  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