network-resurrector/NetworkResurrector.Api/appsettings.json

28 lines
504 B
JSON
Raw Normal View History

2020-07-09 02:14:02 +03:00
{
2020-07-09 02:42:50 +03:00
"urls": "http://*:5062",
"ConnectionStrings": {
"DatabaseConnection": "***REMOVED***"
},
2020-07-09 02:14:02 +03:00
"Logging": {
"LogLevel": {
2020-07-09 02:42:50 +03:00
"Default": "Debug",
2020-07-09 02:14:02 +03:00
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*",
2020-07-10 00:29:39 +03:00
"Users": [
{
"UserId": 1,
"UserName": "***REMOVED***",
"Password": "***REMOVED***"
}
],
"WakeOnLan": {
"Provider": {
"Use": "Inhouse",
"Options": [ "Inhouse", "Nikeee" ]
}
}
2020-07-09 02:14:02 +03:00
}