forked from simplecrypto/powerpool
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.yml
More file actions
70 lines (65 loc) · 1.87 KB
/
config.example.yml
File metadata and controls
70 lines (65 loc) · 1.87 KB
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
# -----------------------------------------
# PowerPool configuration file
# -----------------------------------------
# Each item in the list is a discreet component in powerpool that will get
# created Type specifies the fully qualified python path to the module. A basic
# powerpool server will contain one of each of the following:
# * Jobmanager: creates jobs to be sent to miners and submits solved blocks
# * StratumServer: Accepts stratum connections and sends jobs to users, accepts
# shares, etc
# * Reporter: records submitted shares and solved blocks
# * Manager: Manages logging, starting and stopping the server, and stats
# collection
#
# Optional modules:
# * ServerMonitor: Exposes and HTTP port to view system health and connected
# worker information
#
# Each of these modules has default configurations which can be viewed
# and explained in the defaults.yml file
---
PP:
type: powerpool.main.PowerPool
RR:
type: powerpool.reporters.RedisReporter
redis:
db: 15
CR:
type: powerpool.reporters.CeleryReporter
DR:
type: powerpool.reporters.DoubleReporter
reporters:
- RR
- CR
LTC:
type: powerpool.jobmanagers.MonitorNetwork
merged:
- SYS
algo: scrypt
currency: LTC
pool_address: mri1PEngsRuU6aLKQJ5gGePUdEo76C6DeT
coinservs:
- port: 20001
address: 127.0.0.1
username: admin1
password: 123
poll_priority: 100
SYS:
type: powerpool.jobmanagers.MonitorAuxNetwork
algo: scrypt
signal: 28
currency: SYS
coinservs:
- port: 19001
address: 127.0.0.1
username: admin1
password: 123
poll_priority: 100
TEST_STRAT:
type: powerpool.stratum_server.StratumServer
algo: scrypt
jobmanager: LTC
reporter: DR
start_difficulty: 0.1
MON:
type: powerpool.monitor.ServerMonitor