-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi.conf.sample
More file actions
104 lines (95 loc) · 1.57 KB
/
Copy pathapi.conf.sample
File metadata and controls
104 lines (95 loc) · 1.57 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
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
Global: {
MaxThreads=100;
HashType="SHA256";
MaxBlockSize=100;
HelloTime=2;
DeadTime=10;
MessageFormat="json";
};
Locality: {
Id=1;
BlockStore="/var/lib/razorback/blocks";
BlockStoreRemote="false";
BackupOrder: [ 2, 3, 4 ];
};
Cache: {
BadLimit=256;
GoodLimit=256;
};
MessageQueue: {
Host="localhost";
Port=61612;
User="User";
Password="Password";
SSL="False";
};
Submission: {
Pool: {
MaxItems=0;
MaxSize=0;
MaxItemSize=0;
};
GlobalCache: {
Request: {
Threads: {
Initial=1;
Max=100;
};
};
Response: {
Threads: {
Initial=1;
Max=100;
};
};
};
Transfer: {
Threads: {
Initial=1;
Max=100;
};
};
};
Inspection: {
Threads: {
Initial=5;
Max=100;
};
};
Log: {
# Logging output is determined by its Destination option
#
#
# Minimum two options required: Destination and Level
# Destination may be one of the following:
# syslog
# file
# stderr
#
Destination="syslog";
# Level may be one of the follwoing:
# debug
# info
# notice
# warning
# error
# critical
# alert
# emergency
#
Level="debug";
# Syslog_Facility may be one of the following:
# daemon
# user
# local1
# local2
# local3
# local4
# local5
# local6
# local7
#
Syslog_Facility="daemon";
# File is the path to the file to be used for logging.
File="/tmp/rzb.log";
};