birbmap/Birdmap.API/appsettings.json

57 lines
1004 B
JSON
Raw Normal View History

2020-10-21 11:05:17 +02:00
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
2020-11-25 12:16:14 +01:00
"Kestrel": {
"Certificates": {
"Default": {
2020-11-25 12:22:51 +01:00
"Password": "",
"Path": ""
2020-11-25 12:16:14 +01:00
}
}
},
2020-10-21 17:04:54 +02:00
"AllowedHosts": "*",
2020-11-25 12:22:51 +01:00
"Secret": "",
"LocalDbConnectionString": "",
2020-10-31 15:57:19 +01:00
"Defaults": {
"Services": {
},
2020-11-25 12:22:51 +01:00
"Users": []
},
2020-11-25 12:22:51 +01:00
"UseDummyServices": false,
"ServicesBaseUrl": "https://birb.k8s.kmlabz.com/",
2021-01-16 15:23:10 +01:00
"UseRabbitMq": false,
2020-11-09 18:12:07 +01:00
"Mqtt": {
"BrokerHostSettings": {
2021-01-17 16:45:11 +01:00
"VirtualHost": "",
2020-11-25 12:22:51 +01:00
"Host": "",
2020-11-09 18:12:07 +01:00
"Port": 1883
},
2021-01-17 16:45:11 +01:00
"ExchangeSettings": {
"Name": "",
"Type": "",
"Durable": false,
"AutoDelete": false
},
"QueueSettings": {
"Name": "",
"Durable": false,
"Exclusive": false,
"AutoDelete": false
},
2020-11-09 18:12:07 +01:00
"ClientSettings": {
"Id": "ASP.NET Core client",
2020-11-25 12:22:51 +01:00
"Username": "",
"Password": "",
"Topic": ""
2020-11-09 18:12:07 +01:00
}
}
2020-10-21 11:05:17 +02:00
}