Contribs update
[novacoin.git] / contrib / debian / examples / novacoin.conf
1 # novacoin.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 novacoin 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=81.200.241.54
14
15 # ... or use as many connect= settings as you like to connect ONLY
16 # to specific peers:
17 #connect=81.200.241.54
18
19 # Do not use Internet Relay Chat (irc.lfnet.org #novacoin channel) to
20 # find other peers.
21 #noirc=1
22
23 # Maximum number of inbound+outbound connections.
24 #maxconnections=
25
26
27 # JSON-RPC options (for controlling a running process)
28
29 # server=1 tells NovaCoin to accept JSON-RPC commands.
30 #server=1
31
32 # You must set rpcuser and rpcpassword to secure the JSON-RPC api
33 # Remember, DON'T USE default password
34 #rpcuser=Ulysseys
35 #rpcpassword=YourSuperGreatPasswordNumber_385593
36
37 # By default, only RPC connections from localhost are allowed.  Specify
38 # as many rpcallowip= settings as you like to allow connections from
39 # other hosts (and you may use * as a wildcard character):
40 #rpcallowip=10.1.1.34
41 #rpcallowip=192.168.1.*
42
43 # Listen for RPC connections on this TCP port:
44 rpcport=8344
45
46 # You can use NovaCoin or novacoind to send commands to NovaCoin/novacoind
47 # running on another host using this option:
48 rpcconnect=127.0.0.1
49
50 # Use Secure Sockets Layer (also known as TLS or HTTPS) to communicate
51 # with NovaCoin -server or novacoind
52 #rpcssl=1
53
54 # OpenSSL settings used when rpcssl=1
55 rpcsslciphers=TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH
56 rpcsslcertificatechainfile=server.cert
57 rpcsslprivatekeyfile=server.pem
58
59
60 # Miscellaneous options
61
62 # Pre-generate this many public/private key pairs, so wallet backups will be valid for
63 # both prior transactions and several dozen future transactions.
64 keypool=100
65
66 # Pay an optional transaction fee every time you send novacoins.  
67 paytxfee=0.01
68
69 # User interface options
70
71 # Start NovaCoin minimized
72 #min=1
73
74 # Minimize to the system tray
75 #minimizetotray=1