edgex.yaml 772 B

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