-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
32 lines (32 loc) · 902 Bytes
/
Copy pathconfig.example.json
File metadata and controls
32 lines (32 loc) · 902 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
{
"appId": "com.example.securitycam",
"appName": "SecurityCam",
"recordingsDirectory": "D:/Recordings/ExampleDirectory",
"maintainerEmail": "example@email.com",
"recordingsLowSpaceThresholdMb": 1024,
"domains": [
"https://example.tld"
],
"vapid": {
"email": "mailto:example@email.com",
"publicKey": "BEXAMPLEPUBLICKEY1234567890",
"privateKey": "EXAMPLEPRIVATEKEY0987654321"
},
"restrictApiKeysToLocalNetwork": true,
"users": [
{
"username": "User1",
"password": "ExamplePassword1",
"isAdmin": true,
"apiKeys": [
"EXAMPLE_API_KEY_1"
]
},
{
"username": "User2",
"password": "ExamplePassword2",
"isAdmin": false
}
],
"greenlockConfigDir": "C:\\Example\\Path\\greenlock.d"
}