bitcoind/templates/bitcoin.conf.j2
author Luke Hoersten <luke@hoersten.org>
Fri, 27 Mar 2026 15:25:13 -0500
changeset 45 508c52c25062
parent 43 dd87c8b98381
permissions -rw-r--r--
Reverted rev of bitcoind.

externalip={{bitcoind_external_ip}}
uacomment={{bitcoind_comment}}

datadir={{bitcoind_data_dir}}

maxuploadtarget=1024
dbcache={{bitcoind_dbcache}}
par={{bitcoind_threads}}
checkblocks=6
checklevel=0

server=1
rpcbind=127.0.0.1
{% for ip in bitcoind_rpc_bind %}rpcbind={{ip}}
{% endfor %}
rpcallowip=127.0.0.1
{% for ip in bitcoind_rpc_allow_ip %}rpcallowip={{ip}}
{% endfor %}

{% if bitcoind_rpc_user is defined %}
rpcuser={{bitcoind_rpc_user}}
rpcpassword={{bitcoind_rpc_pass}}
{% endif %}

zmqpubrawblock=tcp://127.0.0.1:28332
zmqpubrawtx=tcp://127.0.0.1:28333

deprecatedrpc=warnings

txindex={{bitcoind_enable_txindex}}
blockfilterindex={{bitcoind_enable_filterindex}}

{% for node in bitcoind_add_node %}addnode={{node}}
{% endfor %}