Add warning to config files
This commit is contained in:
parent
d1153307ac
commit
999edefb63
2 changed files with 14 additions and 1 deletions
|
@ -2,6 +2,12 @@
|
||||||
## bitcoin.conf configuration file. Lines beginning with # are comments.
|
## bitcoin.conf configuration file. Lines beginning with # are comments.
|
||||||
##
|
##
|
||||||
|
|
||||||
|
# DO NOT USE THIS CONFIGURATION FILE IF YOU PLAN TO EXPOSE
|
||||||
|
# BITCOIND'S RPC PORT PUBLICALLY (THESE INSECURE CREDENTIALS
|
||||||
|
# COULD LEAD TO AN ATTACK). ROSETTA-BITCOIN USES THE RPC PORT
|
||||||
|
# FOR INDEXING AND TRANSACTION BROADCAST BUT NEVER PROVIDES THE
|
||||||
|
# CALLER ACCESS TO BITCOIND'S RPC PORT.
|
||||||
|
|
||||||
datadir=/data/bitcoind
|
datadir=/data/bitcoind
|
||||||
bind=0.0.0.0
|
bind=0.0.0.0
|
||||||
rpcbind=0.0.0.0
|
rpcbind=0.0.0.0
|
||||||
|
|
|
@ -1,6 +1,13 @@
|
||||||
##
|
##
|
||||||
## bitcoin.conf configuration file. Lines beginning with # are comments.
|
## bitcoin.conf configuration file. Lines beginning with # are comments.
|
||||||
##
|
##
|
||||||
|
|
||||||
|
# DO NOT USE THIS CONFIGURATION FILE IF YOU PLAN TO EXPOSE
|
||||||
|
# BITCOIND'S RPC PORT PUBLICALLY (THESE INSECURE CREDENTIALS
|
||||||
|
# COULD LEAD TO AN ATTACK). ROSETTA-BITCOIN USES THE RPC PORT
|
||||||
|
# FOR INDEXING AND TRANSACTION BROADCAST BUT NEVER PROVIDES THE
|
||||||
|
# CALLER ACCESS TO BITCOIND'S RPC PORT.
|
||||||
|
|
||||||
datadir=/data/bitcoind
|
datadir=/data/bitcoind
|
||||||
bantime=15
|
bantime=15
|
||||||
rpcallowip=0.0.0.0/0
|
rpcallowip=0.0.0.0/0
|
||||||
|
@ -10,9 +17,9 @@ disablewallet=1
|
||||||
txindex=0
|
txindex=0
|
||||||
rpcuser=rosetta
|
rpcuser=rosetta
|
||||||
rpcpassword=rosetta
|
rpcpassword=rosetta
|
||||||
|
|
||||||
# allow manual pruning
|
# allow manual pruning
|
||||||
prune=1
|
prune=1
|
||||||
|
|
||||||
testnet=1
|
testnet=1
|
||||||
|
|
||||||
[test]
|
[test]
|
||||||
|
|
Loading…
Reference in a new issue