forked from SkinnyPeteTheGiraffe/BootNOMP
-
Notifications
You must be signed in to change notification settings - Fork 63
/
config_example.json
executable file
·152 lines (134 loc) · 4.4 KB
/
config_example.json
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"poolname": "My Cool Pool",
"devmode": false,
"devmodePayMinimim": 0.25,
"devmodePayInterval": 120,
"logips": true,
"anonymizeips": true,
"ipv4bits": 16,
"ipv6bits": 16,
"poolwarningmsg": "WARNING: POOL IS DEFAULT CONFIGURATION! PLEASE ENSURE TO CHANGE CONFIGURATION!",
"defaultCoin": "pexacoin",
"poollogo": "/local/file/path/or_a_web_address.to.png",
"discordtwitterfacebook": "Join our #mining channel on Discord: <a href='https://discord.gg/vzcbVNW' target='_blank'>https://discord.gg/vzcbVNW</a>",
"pagetitle": "My Cool Pool - 0% Fees Promo - Run by professionals",
"pageauthor": "My Name Is...",
"pagedesc": "A reliable, low fee, easy to use mining pool for cryptocurrency! No matter your experience with mining cryptocurrency, we make it easy! Get started mining today!",
"pagekeywds": "GPU,CPU,Hash,Hashrate,Cryptocurrency,Crypto,Mining,Pool,Bitcoin,Raven,Ravencoin,Wavi,Wavicoin,Dixicoin,Dixi,QBic,QBicCoin,Easy,Simple,How,To",
"btcdonations": "18TmiWzbMLyf7MvQMcNWh3hUBVrxBgzrWi",
"ltcdonations": "LX1fUwLVcAaRXvP67ZcqUvjjteaKx1nAvL",
"ethdonations": "0x52fD0B6847E1D3cEc5600359f24d671FdE2Bc65B",
"xmrdonations": "4AVabKt1zGhUckqWC5DKtkcc49ChYFuSETzvDZFfVnUYYY5vC4CSZ9xYzmCWvx7ePYZ9YvxgYbYsLL1L9TfQy2hi5Awsc7d",
"logger" : {
"level" : "debug",
"file" : "/root/logs/nomp_debug.log"
},
"cliHost": "127.0.0.1",
"cliPort": 17117,
"clustering": {
"enabled": true,
"forks": "auto"
},
"defaultPoolConfigs": {
"blockRefreshInterval": 1000,
"jobRebroadcastTimeout": 55,
"connectionTimeout": 600,
"emitInvalidBlockHashes": false,
"validateWorkerUsername": true,
"tcpProxyProtocol": false,
"banning": {
"enabled": true,
"time": 600,
"invalidPercent": 50,
"checkThreshold": 500,
"purgeInterval": 300
},
"redis": {
"host": "127.0.0.1",
"port": 6379
}
},
"website": {
"enabled": true,
"sslenabled": true,
"sslforced": true,
"host": "0.0.0.0",
"port": 80,
"sslport": 443,
"sslkey": "/root/EASYNOMP/certs/privkey.pem",
"sslcert": "/root/EASYNOMP/certs/fullchain.pem",
"stratumHost": "MY_SERVER_IP_OR_DOMAIN_NAME",
"stats": {
"updateInterval": 5,
"historicalRetention": 43200,
"hashrateWindow": 600
},
"adminCenter": {
"enabled": false,
"password": "NOT_WORKING_YET_:P_LESHACAT_CAN_DO_ADMIN_PANEL_FUNCTIONALITY_TOO"
}
},
"redis": {
"host": "127.0.0.1",
"port": 6379
},
"switching": {
"switch1": {
"enabled": false,
"algorithm": "sha256",
"ports": {
"3333": {
"diff": 10,
"varDiff": {
"minDiff": 16,
"maxDiff": 512,
"targetTime": 15,
"retargetTime": 90,
"variancePercent": 30
}
}
}
},
"switch2": {
"enabled": false,
"algorithm": "scrypt",
"ports": {
"4444": {
"diff": 10,
"varDiff": {
"minDiff": 16,
"maxDiff": 512,
"targetTime": 15,
"retargetTime": 90,
"variancePercent": 30
}
}
}
},
"switch3": {
"enabled": false,
"algorithm": "x11",
"ports": {
"5555": {
"diff": 0.001,
"varDiff": {
"minDiff": 0.001,
"maxDiff": 1,
"targetTime": 15,
"retargetTime": 60,
"variancePercent": 30
}
}
}
}
},
"profitSwitch": {
"enabled": false,
"updateInterval": 600,
"depth": 0.90,
"usePoloniex": true,
"useCryptsy": true,
"useMintpal": true,
"useBittrex": true
}
}