forked from JerryWm/Stratum-proxy-SHA256
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.json
54 lines (38 loc) · 799 Bytes
/
server.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
{
servers: [
{
bind_address: "0.0.0.0:3333",
ssl: false,
min_difficulty: 1000,
max_difficulty: 32000,
max_extranonce1_size: 4,
max_extranonce2_size: 4,
},
{
bind_address: "0.0.0.0:4444",
ssl: false,
min_difficulty: 1000,
max_difficulty: 32000,
max_extranonce1_size: 0,
max_extranonce2_size: 3,
},
{
bind_address: "0.0.0.0:1443",
ssl: true,
min_difficulty: 1000,
max_difficulty: 32000,
max_extranonce1_size: 4,
max_extranonce2_size: 4,
},
],
web_server: {
// enable
enable: true,
// bind web server address
bind_address: "0.0.0.0:8000",
// secret key
auth_key: "admin",
// open browser
open_browser: false,
},
}