consensusd_config.toml 780 B

12345678910111213141516171819202122232425
  1. ## chaind configuration file
  2. ##
  3. ## Please make sure you go through all the settings so you can configure
  4. ## your daemon properly.
  5. # The endpoint where chaind will bind its RPC socket
  6. rpc_listen_address = "127.0.0.1:9000"
  7. # Whether to listen with TLS or plain TCP
  8. serve_tls = false
  9. # Path to DER-formatted PKCS#12 archive. (Unused if serve_tls=false)
  10. # This can be created using openssl:
  11. # openssl pkcs12 -export -out chaind_identity.pfx -inkey key.pem -in cert.pem -certfile chain_certs.pem
  12. tls_identity_path = "~/.config/darkfi/consensusd_identity.pfx"
  13. # Password for the created TLS identity. (Unused if serve_tls=false)
  14. tls_identity_password = "FOOBAR"
  15. # Path to the state file
  16. state_path = "~/.config/darkfi/consensusd_state_0"
  17. # Node ID, used only for testing
  18. id = 0