darkfid.toml 652 B

1234567891011121314151617
  1. connect_url = "127.0.0.1:3333"
  2. subscriber_url = "127.0.0.1:4444"
  3. cashier_url = "127.0.0.1:9000"
  4. # The URL where darkfid will bind it's RPC socket
  5. rpc_url = "127.0.0.1:8000"
  6. # Whether to listen with TLS or plain TCP
  7. use_tls = false
  8. # Path to DER-formatted PKCS#12 archive.
  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 = "~/.config/darkfi/darkfid_identity.pfx"
  12. # Password for the created identity
  13. tls_identity_password = "FOOBAR"
  14. # Path to darkfid log file
  15. log_path = "/tmp/darkfid_service_daemon.log"
  16. # Wallet password
  17. password = "TEST_PASSWORD"