bitcoin.conf


SUBMITTED BY: Guest

DATE: May 27, 2013, 11:20 p.m.

FORMAT: Text only

SIZE: 4.3 kB

HITS: 1896

  1. # bitcoin.conf configuration file. Lines beginning with # are comments.
  2. # Network-related settings:
  3. # Run on the test network instead of the real bitcoin network.
  4. #testnet=0
  5. # Connect via a socks4 proxy
  6. #proxy=127.0.0.1:9050
  7. ##############################################################
  8. ## Quick Primer on addnode vs connect ##
  9. ## Let's say for instance you use addnode=4.2.2.4 ##
  10. ## addnode will connect you to and tell you about the ##
  11. ## nodes connected to 4.2.2.4. In addition it will tell ##
  12. ## the other nodes connected to it that you exist so ##
  13. ## they can connect to you. ##
  14. ## connect will not do the above when you 'connect' to it. ##
  15. ## It will *only* connect you to 4.2.2.4 and no one else.##
  16. ## ##
  17. ## So if you're behind a firewall, or have other problems ##
  18. ## finding nodes, add some using 'addnode'. ##
  19. ## ##
  20. ## If you want to stay private, use 'connect' to only ##
  21. ## connect to "trusted" nodes. ##
  22. ## ##
  23. ## If you run multiple nodes on a LAN, there's no need for ##
  24. ## all of them to open lots of connections. Instead ##
  25. ## 'connect' them all to one node that is port forwarded ##
  26. ## and has lots of connections. ##
  27. ## Thanks goes to [Noodle] on Freenode. ##
  28. ##############################################################
  29. # Use as many addnode= settings as you like to connect to specific peers
  30. #addnode=69.164.218.197
  31. #addnode=10.0.0.2:8333
  32. # ... or use as many connect= settings as you like to connect ONLY
  33. # to specific peers:
  34. #connect=69.164.218.197
  35. #connect=10.0.0.1:8333
  36. # Do not use Internet Relay Chat (irc.lfnet.org #bitcoin channel) to
  37. # find other peers.
  38. #noirc=0
  39. # Maximum number of inbound+outbound connections.
  40. #maxconnections=
  41. # JSON-RPC options (for controlling a running Bitcoin/bitcoind process)
  42. # server=1 tells Bitcoin-QT to accept JSON-RPC commands.
  43. server=1
  44. # You must set rpcuser and rpcpassword to secure the JSON-RPC api
  45. rpcuser=solo
  46. rpcpassword=123456
  47. # How many seconds bitcoin will wait for a complete RPC HTTP request.
  48. # after the HTTP connection is established.
  49. #rpctimeout=30
  50. # By default, only RPC connections from localhost are allowed. Specify
  51. # as many rpcallowip= settings as you like to allow connections from
  52. # other hosts (and you may use * as a wildcard character):
  53. #rpcallowip=10.1.1.34
  54. #rpcallowip=192.168.1.*
  55. # Listen for RPC connections on this TCP port:
  56. rpcport=8332
  57. # You can use Bitcoin or bitcoind to send commands to Bitcoin/bitcoind
  58. # running on another host using this option:
  59. #rpcconnect=127.0.0.1
  60. # Use Secure Sockets Layer (also known as TLS or HTTPS) to communicate
  61. # with Bitcoin -server or bitcoind
  62. #rpcssl=1
  63. # OpenSSL settings used when rpcssl=1
  64. #rpcsslciphers=TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH
  65. #rpcsslcertificatechainfile=server.cert
  66. #rpcsslprivatekeyfile=server.pem
  67. # Miscellaneous options
  68. # Set gen=1 to attempt to generate bitcoins
  69. #gen=0
  70. # Use SSE instructions to try to generate bitcoins faster.
  71. #4way=1
  72. # Pre-generate this many public/private key pairs, so wallet backups will be valid for
  73. # both prior transactions and several dozen future transactions.
  74. #keypool=100
  75. # Pay an optional transaction fee every time you send bitcoins. Transactions with fees
  76. # are more likely than free transactions to be included in generated blocks, so may
  77. # be validated sooner.
  78. #paytxfee=0.00
  79. # Allow direct connections for the 'pay via IP address' feature.
  80. #allowreceivebyip=1
  81. # User interface options
  82. # Start Bitcoin minimized
  83. #min=1
  84. # Minimize to the system tray
  85. #minimizetotray=1

comments powered by Disqus