80553283ff413fc4bf4dfb69699dda8de91c6e55
[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=188.120.246.137:7777
14
15 # ... or use as many connect= settings as you like to connect ONLY
16 # to specific peers:
17 #connect=188.120.246.137:7777
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 #rpcuser=Ulysseys
34 #rpcpassword=YourSuperGreatPasswordNumber_385593
35
36 # By default, only RPC connections from localhost are allowed.  Specify
37 # as many rpcallowip= settings as you like to allow connections from
38 # other hosts (and you may use * as a wildcard character):
39 #rpcallowip=10.1.1.34
40 #rpcallowip=192.168.1.*
41
42 # Listen for RPC connections on this TCP port:
43 rpcport=8332
44
45 # You can use NovaCoin or novacoind to send commands to Bitcoin/bitcoindNovaCoin/novacoind
46 # running on another host using this option:
47 rpcconnect=127.0.0.1
48
49 # Use Secure Sockets Layer (also known as TLS or HTTPS) to communicate
50 # with NovaCoin -server or novacoind
51 #rpcssl=1
52
53 # OpenSSL settings used when rpcssl=1
54 rpcsslciphers=TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:@STRENGTH
55 rpcsslcertificatechainfile=server.cert
56 rpcsslprivatekeyfile=server.pem
57
58
59 # Miscellaneous options
60
61 # Set gen=1 to attempt to generate novacoins
62 gen=0
63
64 # Pre-generate this many public/private key pairs, so wallet backups will be valid for
65 # both prior transactions and several dozen future transactions.
66 keypool=100
67
68 # Pay an optional transaction fee every time you send novacoins.  
69 paytxfee=0.01
70
71 # Allow direct connections for the 'pay via IP address' feature.
72 #allowreceivebyip=1
73
74
75 # User interface options
76
77 # Start NovaCoin minimized
78 #min=1
79
80 # Minimize to the system tray
81 #minimizetotray=1