asg_backend/asg_form/appsettings.json

34 lines
764 B
JSON
Raw Normal View History

2024-08-03 20:40:34 +08:00
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
2024-10-19 00:43:22 +08:00
"EventBus": {
"HostName": "127.0.0.1",
"ExchangeName": "qqbot"
},
2024-08-03 20:40:34 +08:00
"AllowedHosts": "*",
"JWT": {
"SigningKey": "JWT加密密钥请严格保密",
"ExpireSeconds": "86400"
},
"HttpReportsDashboard": {
"ExpireDay": 3,
"Storage": {
"ConnectionString": "Server=localhost\\SQLEXPRESS;Database=master;Trusted_Connection=True;TrustServerCertificate=true",
"DeferSecond": 10,
"DeferThreshold": 100
},
"Mail": {
"Server": "smtp.163.com",
"Port": 465,
"Account": "HttpReports@qq.com",
"Password": "*******",
"EnableSsL": true,
"Switch": true
}
}
}