Improve readme, still WIP
This commit is contained in:
parent
1750edcc3d
commit
54f65efd77
3 changed files with 104 additions and 0 deletions
18
config_templates/bitcoin.conf
Normal file
18
config_templates/bitcoin.conf
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# [core]
|
||||
# Maintain a full transaction index, used by the getrawtransaction rpc call.
|
||||
txindex=1
|
||||
|
||||
# [rpc]
|
||||
# Accept command line and JSON-RPC commands.
|
||||
server=1
|
||||
|
||||
rpcauth=<fill your user here>:<fill the password hash here> # You can use https://jlopp.github.io/bitcoin-core-rpc-auth-generator/ to generate this.
|
||||
rpcallowip=<allowed ips> # You probably want to put the subnet mask used in the docker-compose.yaml .env file here.
|
||||
rpcbind=0.0.0.0
|
||||
|
||||
# [wallet]
|
||||
# Do not load the wallet and disable wallet RPC calls.
|
||||
disablewallet=1
|
||||
|
||||
pruned=0
|
||||
peerbloomfilters=1
|
||||
Loading…
Add table
Add a link
Reference in a new issue