appsettings.json 479 B

1234567891011121314151617181920
  1. {
  2. "AllowedHosts": "*",
  3. "ConnectionStrings": {
  4. "DefaultConnection": "Data Source=D:\\NewProductionLineMonitorDB.db;"
  5. },
  6. "Logging": {
  7. "LogLevel": {
  8. "Default": "Information",
  9. "Microsoft": "Warning",
  10. "Microsoft.Hosting.Lifetime": "Information"
  11. }
  12. },
  13. "MqttOptions": {
  14. "IpAddress": "127.0.0.1",
  15. "Port": 1885,
  16. "ClientId": "HostProductionLineMonitorApp"
  17. },
  18. "urls": "http://*:5001;",
  19. "SafeguardUrl": "http://10.41.33.202:5001"
  20. }