blob: 0d9e6cbf0635049d873823404be8adb8d87c88f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
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 %}
|