coding.txt converted to Unix EOL format
[novacoin.git] / contrib / debian / examples / novacoin.conf
1 # bitcoin.conf configuration file. Lines beginning with # are comments.
2
3
4 # Network-related settings:
5
6 # Run on the test network instead of the real bitcoin network.
7 #testnet=1
8
9 # Connect via a socks4 proxy
10 #proxy=127.0.0.1:9050
11
12 # Use as many addnode= settings as you like to connect to specific peers
13 #addnode=69.164.218.197
14 #addnode=10.0.0.2:8333
15
16 # ... or use as many connect= settings as you like to connect ONLY
17 # to specific peers:
18 #connect=69.164.218.197
19 #connect=10.0.0.1:8333
20
21 # Do not use Internet Relay Chat (irc.lfnet.org #bitcoin channel) to
22 # find other peers.
23 #noirc=1
24
25 # Maximum number of inbound+outbound connections.
26 #maxconnections=
27
28
29 # JSON-RPC options (for controlling a running Bitcoin/bitcoind process)
30
31 # server=1 tells Bitcoin to accept JSON-RPC commands.
32 #server=1
33
34 # You must set rpcuser and rpcpassword to secure the JSON-RPC api
35 #rpcuser=Ulysseys
36 #rpcpassword=YourSuperGreatPasswordNumber_385593
37
38 # By default, only RPC connections from localhost are allowed.  Specify
39 # as many rpcallowip= settings as you like to allow connections from
40 # other hosts (and you may use * as a wildcard character):
41 #rpcallowip=10.1.1.34
42 #rpcallowip=192.168.1.*
43
44 # Listen for RPC connections on this TCP port:
45 rpcport=8332
46
47 # You can use Bitcoin or bitcoind to send commands to Bitcoin/bitcoind
48 # running on another host using this option:
49 rpcconnect=127.0.0.1
50
51 # Use Secure Sockets Layer (also known as TLS or HTTPS) to communicate
52 # with Bitcoin -server or bitcoind
53 #rpcssl=1
54
55 # OpenSSL settings used when rpcssl=1
56 rpcsslciphers=TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH
57 rpcsslcertificatechainfile=server.cert
58 rpcsslprivatekeyfile=server.pem
59
60
61 # Miscellaneous options
62
63 # Set gen=1 to attempt to generate bitcoins
64 gen=0
65
66 # Use SSE instructions to try to generate bitcoins faster.
67 #4way=1
68
69 # Pre-generate this many public/private key pairs, so wallet backups will be valid for
70 # both prior transactions and several dozen future transactions.
71 keypool=100
72
73 # Pay an optional transaction fee every time you send bitcoins.  Transactions with fees
74 # are more likely than free transactions to be included in generated blocks, so may
75 # be validated sooner.
76 paytxfee=0.00
77
78 # Allow direct connections for the 'pay via IP address' feature.
79 #allowreceivebyip=1
80
81
82 # User interface options
83
84 # Start Bitcoin minimized
85 #min=1
86
87 # Minimize to the system tray
88 #minimizetotray=1