LingAdmin/Backend/LingAdmin.API/appsettings.json

19 lines
500 B
JSON
Raw Permalink Normal View History

2026-04-16 18:13:06 +08:00
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"ConnectionStrings": {
"DefaultConnection": "Server=127.0.0.1,19433;Database=LingAdminDB;User Id=sa;Password=Blank@0925;TrustServerCertificate=True;Encrypt=False;"
},
"JwtSettings": {
"SecretKey": "L1cuvNq1rUe8GLnHeKoWXpmWH5VoZW/+RydX7ONQ1nc4=",
"Issuer": "LingAdmin.API",
"Audience": "LingAdmin.Client",
"ExpiryMinutes": "60"
}
}