LingAdmin/Backend/Services/IdentityService/LingAdmin.IdentityService/appsettings.Development.json

20 lines
598 B
JSON
Raw Normal View History

2026-04-16 18:13:06 +08:00
{
"ConnectionStrings": {
"DefaultConnection": "Server=127.0.0.1,19433;Database=LingAdminDB;User Id=sa;Password=Blank@0925;TrustServerCertificate=True;Encrypt=False;"
},
"JwtSettings": {
"SecretKey": "DevelopmentSecretKeyThatIsAtLeast32CharactersLong!",
"Issuer": "LingAdmin.IdentityService.Dev",
"Audience": "LingAdmin.Client.Dev",
"AccessTokenExpiryMinutes": 120,
"RefreshTokenExpiryDays": 30
},
"Logging": {
"LogLevel": {
"Default": "Debug",
"Microsoft.AspNetCore": "Information",
"Microsoft.EntityFrameworkCore": "Information"
}
}
}