Improve readme, still WIP
This commit is contained in:
parent
1750edcc3d
commit
54f65efd77
3 changed files with 104 additions and 0 deletions
21
config_templates/config.toml
Normal file
21
config_templates/config.toml
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# File where bitcoind stores the cookie, usually file .cookie in its datadir
|
||||
cookie_file = "/home/bitcoin/data/.cookie"
|
||||
|
||||
# The listening RPC address of bitcoind, port is usually 8332
|
||||
daemon_rpc_addr = "bitcoind:8332"
|
||||
|
||||
# The listening P2P address of bitcoind, port is usually 8333
|
||||
daemon_p2p_addr = "bitcoind:8333"
|
||||
|
||||
# Directory where the index should be stored. It should have at least 70GB of free space.
|
||||
db_dir = "/home/electrs/data/index"
|
||||
|
||||
# bitcoin means mainnet. Don't set to anything else unless you're a developer.
|
||||
network = "bitcoin"
|
||||
|
||||
# The address on which electrs should listen. Warning: 0.0.0.0 is probably a bad idea!
|
||||
# Tunneling is the recommended way to access electrs remotely.
|
||||
electrum_rpc_addr = "0.0.0.0:50001"
|
||||
|
||||
# How much information about internal workings should electrs print. Increase before reporting a bug.
|
||||
log_filters = "INFO"
|
||||
Loading…
Add table
Add a link
Reference in a new issue