-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathappsettings.ssltrack.json
More file actions
39 lines (39 loc) · 968 Bytes
/
Copy pathappsettings.ssltrack.json
File metadata and controls
39 lines (39 loc) · 968 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
33
34
35
36
37
38
39
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"Microsoft.EntityFrameworkCore.Database.Command": "Warning",
"Polly": "Warning"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"Data": "Data Source=./data/data.db"
},
"Configurations": {
"DaysToExpiration": 30,
"AlertsEnabled": true,
"UpdateCron": "*/5 * * * *",
"AlertCron": "*/5 * * * *",
"ClearLogsCron": "*/5 * * * *",
"ApiBaseAddress": "http://localhost:8080",
"LogsEndpoint": "/api/logs",
"ClearLogsEndpoint": "/api/logs/clear",
"AgentsStatusEndpoint": "/api/ping"
},
"MailProperties": {
"Name": "Domain Monitor",
"MailFrom": "domain@domain.com",
"MailTo": "alerts@domain.com",
"Bcc": "",
"Subject": "",
"Body": "",
"IsBodyHtml": true,
"Username": "",
"Password": "",
"SmtpHost": "smtp-ssltrack",
"Port": 25,
"EnableSsl": false
}
}