NucuCar/NucuCar.Sensors/appsettings.json

30 lines
576 B
JSON
Raw Normal View History

2019-11-09 13:34:49 +00:00
{
2019-11-14 14:45:32 +00:00
"Telemetry": {
2019-12-28 15:09:17 +00:00
"Publisher": "Azure",
"ServiceEnabled": true,
"PublishInterval": 3000,
"ConnectionString": "YOUR_CONNECTION_STRING"
2019-11-14 14:45:32 +00:00
},
2019-11-11 15:58:46 +00:00
"EnvironmentSensor": {
"Enabled": true,
"Telemetry": true
2019-11-11 15:58:46 +00:00
},
2019-11-09 13:34:49 +00:00
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*",
"Kestrel": {
"EndpointDefaults": {
"Protocols": "Http2"
},
"EndPoints": {
"Https": {
"Url": "https://0.0.0.0:8000"
}
}
2019-11-09 13:34:49 +00:00
}
}