edgex.yaml 703 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #Global Edgex configurations
  2. default:
  3. protocol: tcp
  4. server: localhost
  5. port: 5563
  6. topic: events
  7. # Below is optional configurations settings for mqtt
  8. # type: mqtt
  9. # optional:
  10. # ClientId: client1
  11. # Username: user1
  12. # Password: password
  13. # Qos: 1
  14. # KeepAlive: 5000
  15. # Retained: true/false
  16. # ConnectionPayload:
  17. # CertFile:
  18. # KeyFile:
  19. # CertPEMBlock:
  20. # KeyPEMBlock:
  21. # SkipCertVerify: true/false
  22. #Override the global configurations
  23. application_conf: #Conf_key
  24. protocol: tcp
  25. server: localhost
  26. port: 5571
  27. topic: application
  28. mqtt_conf: #Conf_key
  29. protocol: tcp
  30. server: 127.0.0.1
  31. port: 1883
  32. topic: events
  33. type: mqtt
  34. optional:
  35. ClientId: "client1"