FIC_Solar/SolarPower/appsettings.Development.json
2021-06-09 15:03:24 +08:00

31 lines
761 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"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
}
}