-
Notifications
You must be signed in to change notification settings - Fork 1
/
bigchaindb-config.template
53 lines (53 loc) · 1.48 KB
/
bigchaindb-config.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"database": {
"ca_cert": null,
"max_tries": 3,
"password": null,
"name": "bigchain",
"replicaset": "bigchain-rs",
"backend": "mongodb",
"keyfile_passphrase": null,
"ssl": false,
"certfile": null,
"connection_timeout": 5000,
"login": null,
"crlfile": null,
"port": 27017,
"keyfile": null,
"host": "change_me"
},
"wsserver": {
"advertised_scheme": "ws",
"scheme": "ws",
"advertised_host": "localhost",
"advertised_port": 9985,
"port": 9985,
"host": "localhost"
},
"server": {
"workers": null,
"bind": "0.0.0.0:9984",
"loglevel": "info"
},
"log": {
"datefmt_console": "%Y-%m-%d %H:%M:%S",
"datefmt_logfile": "%Y-%m-%d %H:%M:%S",
"file": "/data/bigchaindb.log",
"fmt_console": "[%(asctime)s] [%(levelname)s] (%(name)s) %(message)s (%(processName)-10s - pid: %(process)d)",
"level_console": "info",
"level_logfile": "info",
"granular_levels": {},
"error_file": "/data/bigchaindb-errors.log",
"fmt_logfile": "[%(asctime)s] [%(levelname)s] (%(name)s) %(message)s (%(processName)-10s - pid: %(process)d)",
"port": 9020
},
"keyring": [],
"keypair": {
"private": "change_me",
"public": "change_me"
},
"graphite": {
"host": "localhost"
},
"backlog_reassign_delay": 120
}