taud_config.toml 789 B

1234567891011121314151617181920212223242526272829303132
  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 dataset
  6. dataset_path = "~/.config/tau"
  7. datastore_raft = "~/.config/tau/tau.db"
  8. # Path to DER-formatted PKCS#12 archive. (used only with tls url)
  9. # This can be created using openssl:
  10. # openssl pkcs12 -export -out identity.pfx -inkey key.pem -in cert.pem -certfile chain_certs.pem
  11. tls_identity_path = ""
  12. ### Number of outbound connections
  13. #outbound_connections = 5
  14. # The address where taud should bind its RPC socket
  15. [rpc_listener_url]
  16. url="127.0.0.1:8875"
  17. password = "FOOBAR"
  18. ### The accept address
  19. #[accept_address]
  20. #url="127.0.0.1:8822"
  21. #password = "FOOBAR"
  22. ### Seed node addresses
  23. #[[seeds]]
  24. #url="127.0.0.1:8811"
  25. #password = "FOOBAR"