-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathappsettings.json
More file actions
47 lines (47 loc) · 1.08 KB
/
appsettings.json
File metadata and controls
47 lines (47 loc) · 1.08 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
{
"Logging": {
"LogLevel": {
"Default": "Warning",
"Microsoft.AspNetCore": "Warning"
},
"Console": {
"SingleLine": true,
"IncludeScopes": true,
"TimestampFormat": "[MM/dd/yyyy HH:mm:ss.fff] "
}
},
"AllowedHosts": "*",
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://0.0.0.0:80",
"Protocols": "Http1"
}
}
},
"AppConfiguration": {
"ServerDescription": {
"Uuid": "00000000-0000-0000-0000-000000000000",
"FriendlyName": "Device Status Checker",
"Version": "v0.0.1",
"Manufacturer": "Sparse Lab",
"ModelName": "Device Status Checker",
"SerialNumber": "00000000"
},
"EnableDiscovery": true,
"EnableCheckPing": true,
"EnableCheckPort": true,
"EnableCheckOnvifMedia": true,
"EnableCheckRTSPLinks": true,
"DiscoveryTimeout": 60000,
"ThumbnailsPath": "/tmp/thumbnails/",
"DefaultDeviceJsonPath": "device_list.json",
"NetworkInterface": "eth0",
"EstimatedAuths": [
{
"user": "root",
"pass": "root"
}
]
}
}