-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyablo.cfg
35 lines (31 loc) · 1.07 KB
/
yablo.cfg
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
[yablo]
# The front server is responsible for receiving all requests
# and forwarding them to other places.
front_server = http://localhost:8001/
# Internal servers to handle requests.
query_server = http://localhost:8191/query
watch_server = http://localhost:8292/watch
[bitcoind]
bitcoin_conf = ~/.btcd/btcd.conf
rpc_cert = ~/.btcd/rpc.cert
port = 18334
[database]
# Prefix Redis keys with key_prefix. It is recommended to
# use a short prefix to avoid wasting memory.
# This is optional and defaults to yab.
#
# key_prefix = yab
# Example of connection strings you may use.
#
# conn_string = sqlite:///yablo.db
# conn_string = postgresql://user:pwd@host:port/yablo
# conn_string = mysql://user:pwd@host/yablo
# conn_string = oracle://user:pwd@host:port/yablo
#
# conn_evt_string is optional and defaults to conn_string if
# not specified. This setting is used to provide a more restricted
# connection in case the database supports it. The services using
# it will modify only the Event table, and read other tables.
#
conn_string = sqlite:///yablo.db
conn_evt_string = sqlite:///yablo.db