ircd_config.toml 872 B

123456789101112131415161718192021222324252627282930313233343536
  1. ## taud configuration file
  2. ##
  3. ## Please make sure you go through all the settings so you can configure
  4. ## your daemon properly.
  5. # Path to the datastore
  6. datastore_raft = "~/.config/tau/tau.db"
  7. # Path to DER-formatted PKCS#12 archive. (used only with tls url)
  8. # This can be created using openssl:
  9. # openssl pkcs12 -export -out identity.pfx -inkey key.pem -in cert.pem -certfile chain_certs.pem
  10. tls_identity_path = ""
  11. ### Number of outbound connections
  12. #outbound_connections = 5
  13. # The address where taud should bind its RPC socket
  14. [rpc_listener_url]
  15. url="127.0.0.1:6667"
  16. password = "FOOBAR"
  17. # The address where taud should bind its RPC socket
  18. [irc_listener_url]
  19. url="127.0.0.1:8000"
  20. password = "FOOBAR"
  21. ### The accept address
  22. #[accept_address]
  23. #url="127.0.0.1:8822"
  24. #password = "FOOBAR"
  25. ### Seed node addresses
  26. #[[seeds]]
  27. #url="127.0.0.1:8811"
  28. #password = "FOOBAR"