diff options
| author | Luke Hoersten <[email protected]> | 2020-05-12 19:19:36 -0500 |
|---|---|---|
| committer | Luke Hoersten <[email protected]> | 2020-05-12 19:19:36 -0500 |
| commit | e15954d16ab8fa98faae42afd828dd2a55324ba7 (patch) | |
| tree | 7ded7b4876a23720114b019c0682b0a467b645b8 /bitcoind/templates/bitcoin.conf.j2 | |
| parent | 42436cd2092d53f403b4b59fb77e63ab52fa6356 (diff) | |
Added bitcoind ansible
Diffstat (limited to 'bitcoind/templates/bitcoin.conf.j2')
| -rw-r--r-- | bitcoind/templates/bitcoin.conf.j2 | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/bitcoind/templates/bitcoin.conf.j2 b/bitcoind/templates/bitcoin.conf.j2 new file mode 100644 index 0000000..87e7aa4 --- /dev/null +++ b/bitcoind/templates/bitcoin.conf.j2 @@ -0,0 +1,16 @@ +externalip={{node_external_ip}} +uacomment={{bitcoind_comment}} + +datadir={{bitcoind_data_dir}} +logdir={{bitcoind_log_dir}} +debug=rpc + +server=1 +rpcssl=1 +rpcuser={{bitcoind_rpc_user}} +rpcpassword={{bitcoind_rpc_pass}} + +txindex={{bitcoind_enable_txindex}} + +{% for node in bitcoind_add_node %}addnode={{node}} +{% endfor %} |
