CSharp-Single-EFCore/Bunny.WebApi/appsettings.json

25 lines
485 B
JSON
Raw Normal View History

2024-08-08 22:23:36 +08:00
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"Microsoft.EntityFrameworkCore": "Information"
}
},
"AllowedHosts": "*",
"DataBase": {
"DataBaseConnection": "Database/bunny.db",
2024-08-08 22:23:36 +08:00
"TimeOut": 6
},
"JWT": {
"Issuer": "Issuer",
"Audience": "Audience"
},
"Redis": {
"Host": "47.120.65.66",
"Port": "6379",
"Password": "02120212",
"DefaultDB": 6,
"AsyncTimeout": 300
2024-08-08 22:23:36 +08:00
}
}