NucuCar/NucuCar.Sensors/appsettings.json

34 lines
647 B
JSON
Raw Normal View History

2019-11-09 13:34:49 +00:00
{
2019-11-14 14:45:32 +00:00
"Telemetry": {
"Publisher": "Disk",
"ServiceEnabled": true,
"PublishInterval": 3000,
"ConnectionString": "FileName=nucucar.telemetry"
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-12-29 12:10:58 +00:00
"HealthSensor": {
"Enabled": true,
"Telemetry": true
},
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
}
}