diff options
Diffstat (limited to 'bitcoin/file/bitcoind.conf.new')
| -rw-r--r-- | bitcoin/file/bitcoind.conf.new | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/bitcoin/file/bitcoind.conf.new b/bitcoin/file/bitcoind.conf.new new file mode 100644 index 0000000..2189ba1 --- /dev/null +++ b/bitcoin/file/bitcoind.conf.new @@ -0,0 +1,59 @@ +# Data directory +datadir=/var/lib/bitcoind + +# <category> are: addrman, bench, blockstorage, cmpctblock, coindb, +# Output debug and trace logging (default: -nodebug, supplying <category> +# any other categories are ignored. Other valid values for +# estimatefee, http, i2p, ipc, leveldb, libevent, mempool, +# is optional). If <category> is not supplied or if <category> is 1 +# mempoolrej, net, proxy, prune, qt, rand, reindex, rpc, scan, +# or "all", output all debug logging. If <category> is 0 or "none", +# output multiple categories. +# selectcoins, tor, txpackages, txreconciliation, validation, +# walletdb, zmq. This option can be specified multiple times to +debug=none + +# Specify location of debug log file. Relative paths will be prefixed by a +# net-specific datadir location. +debuglogfile=/var/log/bitcoind/bitcoind.log + +# pid file to track the running process. Relative paths will be prefixed by a +# net-specific datadir location. +pid=/run/bitcoind/bitcoind.pid + +# '1' tells Bitcoin to accept JSON-RPC commands so that your fullnode can be run as a server +server=1 + +# Accept connections from outside. +# listen=1 + +# Reduce storage requirements by enabling pruning (deleting) of old +# blocks. This allows the pruneblockchain RPC to be called to +# delete specific blocks and enables automatic pruning of old +# blocks if a target size in MiB is provided. This mode is +# incompatible with -txindex. Warning: Reverting this setting +# requires re-downloading the entire blockchain. (default: 0 = +# disable pruning blocks, 1 = allow manual pruning via RPC, >=550 = +# automatically prune block files to stay under the specified +# target size in MiB) +# prune=550 + +# Automatically create Tor onion service. +# listenonion=1 + +# How many seconds Bitcoin will wait for a complete RPC HTTP request +# after the HTTP connection is established. +rpctimeout=30 + +# By default, only RPC connections from localhost are allowed. Specify +# as many rpcallowip= settings as you like to allow connections from +# other hosts (and you may use * as a wildcard character): +#rpcallowip=10.1.1.* +#rpcallowip=192.168.1.* + +# Bind to given address to listen for JSON-RPC connections. Do not expose the +# RPC server to untrusted networks such as the public internet! This option is +# ignored unless -rpcallowip is also passed. Port is optional and overrides +# -rpcport. Use [host]:port notation for IPv6. This option can be specified +# multiple times (default: 127.0.0.1 and ::1 i.e., localhost) +# rpcbind=localhost:8332 |
