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

21 lines
603 B
JSON
Raw Permalink 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": "1cuvNq1rUe8GLnHeKoWXpmWH5VoZW/+RydX7ONQ1nc4=",
"Issuer": "LingAdmin.IdentityService",
"Audience": "LingAdmin.Client",
"AccessTokenExpiryMinutes": 60,
"RefreshTokenExpiryDays": 7
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning",
"Microsoft.EntityFrameworkCore": "Warning"
}
},
"AllowedHosts": "*"
}