forked from sammy007/ether-proxy
-
Notifications
You must be signed in to change notification settings - Fork 4
/
config.example.json
50 lines (46 loc) · 959 Bytes
/
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
{
"threads": 2,
"proxy": {
"listen": "0.0.0.0:8546",
"clientTimeout": "3m",
"blockRefreshInterval": "100ms",
"hashrateWindow": "15m",
"submitHashrate": false,
"luckWindow": "24h",
"largeLuckWindow": "72h"
},
"frontend": {
"listen": "0.0.0.0:8080",
"login": "admin",
"password": ""
},
"upstreamCheckInterval": "5s",
"upstream": [
{
"pool": true,
"name": "Suprnova",
"url": "http://dcr.suprnova.cc:9110",
"username": "workerlogin",
"password": "workerpassword",
"timeout": "10s"
},
{
"name": "main",
"url": "http://127.0.0.1:9109",
"username": "yourusername",
"password": "yoursecurepassword",
"timeout": "10s"
},
{
"name": "backup",
"url": "http://127.0.0.2:9109",
"username": "yourusername",
"password": "yoursecurepassword",
"timeout": "10s"
}
],
"newrelicEnabled": false,
"newrelicName": "MyDecredProxy",
"newrelicKey": "SECRET_KEY",
"newrelicVerbose": false
}