31 lines
761 B
JSON
31 lines
761 B
JSON
{
|
||
"Logging": {
|
||
"LogLevel": {
|
||
"Default": "Information",
|
||
"Microsoft": "Warning",
|
||
"Microsoft.Hosting.Lifetime": "Information"
|
||
}
|
||
},
|
||
"LoginExpireMinute": 60, //登入到期時間,單位(分)
|
||
"DBConfig": {
|
||
"Server": "Abc123456",
|
||
"Database": "321",
|
||
"Root": "147",
|
||
"Password": "741"
|
||
},
|
||
"JWTConfig": {
|
||
"Issuer": "SHH", //Token釋出者
|
||
"Audience": "EveryOne", //Token接受者
|
||
"IssuerSigningKey": "0dd6b2fa-ce1b-40e5-8ca9-e798a4c7bb23", //祕鑰可以構建伺服器認可的token;簽名祕鑰長度最少16
|
||
"AccessTokenExpiresMinutes": "600" //過期時間 分鐘
|
||
},
|
||
"SMTPConfig": {
|
||
"Host": "smtp.gmail.com",
|
||
"Port": 25,
|
||
"UserName": "shanghohui@gmail.com",
|
||
"Password": "wswgnluvoodfexrb",
|
||
"EnableSsl": true
|
||
}
|
||
|
||
}
|