appsettings.json 394 B

123456789101112131415161718
  1. {
  2. "AllowedHosts": "*",
  3. "ConnectionStrings": {
  4. "DefaultConnection": "Data Source=D:\\NewProductionLineMonitorDB.db;"
  5. },
  6. "Logging": {
  7. "LogLevel": {
  8. "Default": "Information",
  9. "Microsoft.AspNetCore": "Warning"
  10. }
  11. },
  12. "MqttOptions": {
  13. "IpAddress": "127.0.0.1",
  14. "Port": 1885,
  15. "ClientId": "HostProductionLineMonitorWebAPI"
  16. },
  17. "urls": "http://*:80;"
  18. }