This repository has been archived by the owner on Jun 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 54
/
config.json
113 lines (113 loc) · 2.59 KB
/
config.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
{
"listen" : {
"port" : 8445,
"host" : "0.0.0.0"
},
"domainName" : "WORKGROUP",
"allowAnonymous" : false,
"smb2Support": false,
"extendedSecurity": true,
"users" : {
"test" : {
"lmHash" : "01fc5a6be7bc6929aad3b435b51404ee",
"ntlmHash" : "0cb6948805f797bf2a82807973b89537"
},
"admin" : {
"lmHash" : "f0d412bd764ffe81aad3b435b51404ee",
"ntlmHash" : "209c6174da490caeb422f3fa5a7ae634"
},
"guest" : {
"lmHash" : "aad3b435b51404eeaad3b435b51404ee",
"ntlmHash" : "31d6cfe0d16ae931b73c59d7e0c089c0"
}
},
"shares": {
"FS": {
"backend": "fs",
"description": "fs-based test share",
"path": "./smbroot"
},
"DAM": {
"backend": "dam",
"description": "DAM-based test share",
"host": "localhost",
"port": 4502,
"protocol": "http:",
"auth": {
"user": "<user>",
"pass": "<pwd>"
},
"maxSockets": 64,
"allCacheTTL": 1800000,
"contentCacheTTL": 30000,
"binCacheTTL": 600000
},
"JCR": {
"backend": "jcr",
"description": "AEM-based test share",
"host": "localhost",
"port": 4502,
"protocol": "http:",
"auth": {
"user": "<user>",
"pass": "<pwd>"
},
"path": "/",
"maxSockets": 64,
"allCacheTTL": 1800000,
"contentCacheTTL": 30000,
"binCacheTTL": 600000
},
"RQ": {
"backend": "rq",
"description": "rq-based test share",
"host": "localhost",
"port": 4502,
"protocol": "http:",
"auth": {
"user": "<user>",
"pass": "<pwd>"
},
"maxSockets": 64,
"allCacheTTL": 1800000,
"contentCacheTTL": 30000,
"binCacheTTL": 600000,
"expiration": 30000,
"frequency": 3000,
"maxRetries": 3,
"retryDelay": 10000,
"modifiedThreshold": 100,
"tmpPath": "./smbrqroot",
"local":{
"backend": "fs",
"description": "fs test share local",
"path": "./smbrqroot"
},
"work": {
"backend": "fs",
"description": "fs test share work",
"path": "./smbrqwork"
},
"events": [
"syncfilestart",
"syncfileend",
"syncfileerr",
"syncfileabort",
"syncfileprogress",
"syncerr",
"syncpurged",
"syncconflict",
"folderlist",
"requestqueueinit",
"longdownload",
"downloadprogress",
"downloadstart",
"downloadend",
"downloaderr"
],
"preserveCacheFiles": [
"request-queue.nedb"
]
}
}
}