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

31 lines
622 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": {
2024-08-12 23:49:09 +08:00
"Host": "47.120.65.66",
"Port": "6379",
2024-08-12 23:49:09 +08:00
"Password": "02120212",
"DefaultDB": 6,
"AsyncTimeout": 300
2024-08-14 23:57:43 +08:00
},
"Minio": {
"Url": "192.168.3.98:9000",
"AccessKey": "bunny",
"SecretKey": "02120212",
"BucketName": "csharp-test"
2024-08-08 22:23:36 +08:00
}
}