-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdru.default.conf
executable file
·75 lines (55 loc) · 1.76 KB
/
dru.default.conf
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#################################
######### WEB SERVER ############
#################################
debug=false
web_host=localhost
web_enable_ssl=false
web_ssl_key_path=./web/conf/placeholder.key
web_ssl_cert_path=./web/conf/placeholder.cert
#################################
######## DATA SETTINGS ##########
#################################
### if you don't wish to persist data
### on specific part of the system,
### comment out chosen lines below
mongo_dir=~/dru-data/mongo
postgres_dir=~/dru-data/pg
task_results_dir=~/dru-data/task-results/
zcash_dir=~/dru-data/zcash
rabbit_dir=~/dru-data/rabbit
##################################
### CRYPTOCURRENCY NODE CONFIG ###
##################################
use_docker_zcash_node=true
### will only have about 7000 blocks
docker_zcash_node_test_mode=false
cryptocurrency=zcash
cryptocurrency_rpc_port=8232
cryptocurrency_rpc_username=user
cryptocurrency_rpc_password=pass
##################################
########## CREDENTIALS ###########
##################################
web_admin_username=admin
web_admin_password=pass
### all of the credentials below are not
### as important because those services
### are not exposed outside of docker
mongo_admin_username=admin
mongo_admin_password=pass
mongo_readonly_username=user
mongo_readonly_password=pass
postgres_username=postgres
postgres_password=postgres
##################################
######### MISCELLANEOUS ##########
##################################
### more makes initial load of data faster
### at the cost of memory usage
tx_address_cache_limit=1000000
### for web to send task results over email
### you need a sendgrid account
# sendgrid_username=user
# sendgrid_password=changeme