12345678910111213141516171819202122232425262728293031323334353637 |
- #Global Edgex configurations
- default:
- protocol: tcp
- server: localhost
- port: 5563
- topic: events
- # Below is optional configurations settings for mqtt
- # type: mqtt
- # optional:
- # ClientId: client1
- # Username: user1
- # Password: password
- # Qos: 1
- # KeepAlive: 5000
- # Retained: true/false
- # ConnectionPayload:
- # CertFile:
- # KeyFile:
- # CertPEMBlock:
- # KeyPEMBlock:
- # SkipCertVerify: true/false
- #Override the global configurations
- application_conf: #Conf_key
- protocol: tcp
- server: localhost
- port: 5571
- topic: application
- mqtt_conf: #Conf_key
- protocol: tcp
- server: 127.0.0.1
- port: 1883
- topic: events
- type: mqtt
- optional:
- ClientId: "client1"
|