deprecate abe in conf, more details about leveldb and improvements in howto
[electrum-server.git] / electrum.conf.sample
1 [server]
2 host = localhost
3 #report_host = 
4 stratum_tcp_port = 50001
5 stratum_http_port = 8081
6 #stratum_tcp_ssl_port = 50002
7 #stratum_http_ssl_port = 8082
8 #report_stratum_tcp_port = 50001
9 #report_stratum_http_port = 80
10 #report_stratum_tcp_ssl_port = 50002
11 #report_stratum_http_ssl_port = 443
12 password = secret
13 banner = Welcome to Electrum!
14 irc = yes
15 #irc_nick = <yournickname>
16 #ssl_certfile = /path/to/electrum-server.crt
17 #ssl_keyfile = /path/to/electrum-server.key
18
19 # default backend is leveldb (pruning server)
20 backend = leveldb
21
22 [leveldb]
23 path = /path/to/your/database
24 # for each address, history will be pruned if it is longer than this limit
25 pruning_limit = 100
26
27
28 # ABE configuration for full servers
29 # Backends other than level db are deprecated and currently unsupported
30
31 # number of requests per single hash
32 # limit = 1000
33
34 # [database]
35 # type = MySQLdb
36 # database = electrum
37 # username = electrum
38 # password = secret
39
40 # [database]
41 # type = psycopg2
42 # database = electrum
43 #
44 # [database]
45 # type = sqlite3
46 # database = electrum.sqlite
47
48
49 [bitcoind]
50 host = localhost
51 port = 8332
52 # user and password from bitcoin.conf
53 user = user
54 password = password