taud_config.toml 577 B

12345678910111213141516171819
  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. # 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. # The address where taud should bind its RPC socket
  12. [rpc_listener_url]
  13. url="127.0.0.1:8875"
  14. # Password for the created TLS identity or tor password
  15. password = "FOOBAR"