forked from sammy007/ether-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
44 lines (40 loc) · 822 Bytes
/
config.example.json
File metadata and controls
44 lines (40 loc) · 822 Bytes
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
{
"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": "EuroHash.net",
"url": "http://eth-eu.eurohash.net:8888/miner/0xb85150eb365e7df0941f0cf08235f987ba91506a/proxy",
"timeout": "10s"
},
{
"name": "main",
"url": "http://127.0.0.1:8545",
"timeout": "10s"
},
{
"name": "backup",
"url": "http://127.0.0.2:8545",
"timeout": "10s"
}
],
"newrelicEnabled": false,
"newrelicName": "MyEtherProxy",
"newrelicKey": "SECRET_KEY",
"newrelicVerbose": false
}