Files
gwms/GWMS.User/appsettings.json
2022-06-20 17:57:19 +02:00

32 lines
1022 B
JSON

{
"ConnectionStrings": {
"AuthConnection": "Server=localhost;port=3306;database=GWMS_auth;user=GWMS;pwd=GWMS_secret_pwd;sslmode=None;"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
//"LogLevel": {
// "Default": "Debug",
// "System": "Information",
// "Microsoft": "Information",
// "Microsoft.AspNetCore.SignalR": "Debug",
// "Microsoft.AspNetCore.Http.Connections": "Debug"
//}
},
"AllowedHosts": "*",
"ExternalProviders": {
"MailKit": {
"SMTP": {
"Address": "smtp-mail.outlook.com",
"Port": "587",
"Account": "gwms.notify@outlook.com",
"Password": "Gwms_2022!",
"SenderEmail": "gwms.notify@outlook.com",
"SenderName": "GWMS Notification"
}
}
}
}