mirror of
https://github.com/absmach/supermq.git
synced 2026-06-23 04:20:17 +00:00
eb14615cf5
* feat: update provison service Signed-off-by: Felix Gateru <felix.gateru@gmail.com> * refactor: remove duplicate env variables Signed-off-by: Felix Gateru <felix.gateru@gmail.com> * ci: make fetch_supermq Signed-off-by: Felix Gateru <felix.gateru@gmail.com> * docs(README.md): update README Signed-off-by: Felix Gateru <felix.gateru@gmail.com> --------- Signed-off-by: Felix Gateru <felix.gateru@gmail.com>
75 lines
1.5 KiB
TOML
75 lines
1.5 KiB
TOML
# Copyright (c) Abstract Machines
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
[bootstrap]
|
|
[bootstrap.content]
|
|
[bootstrap.content.agent.edgex]
|
|
url = "http://localhost:48090/api/v1/"
|
|
|
|
[bootstrap.content.agent.log]
|
|
level = "info"
|
|
|
|
[bootstrap.content.agent.mqtt]
|
|
mtls = false
|
|
qos = 0
|
|
retain = false
|
|
skip_tls_ver = true
|
|
url = "localhost:1883"
|
|
|
|
[bootstrap.content.agent.server]
|
|
nats_url = "localhost:4222"
|
|
port = "9000"
|
|
|
|
[bootstrap.content.agent.heartbeat]
|
|
interval = "30s"
|
|
|
|
[bootstrap.content.agent.terminal]
|
|
session_timeout = "30s"
|
|
|
|
|
|
[bootstrap.content.export.exp]
|
|
log_level = "debug"
|
|
nats = "nats://localhost:4222"
|
|
port = "8172"
|
|
cache_url = "localhost:6379"
|
|
cache_pass = ""
|
|
cache_db = "0"
|
|
|
|
[bootstrap.content.export.mqtt]
|
|
ca_path = "ca.crt"
|
|
cert_path = "thing.crt"
|
|
channel = ""
|
|
host = "tcp://localhost:1883"
|
|
mtls = false
|
|
password = ""
|
|
priv_key_path = "thing.key"
|
|
qos = 0
|
|
retain = false
|
|
skip_tls_ver = false
|
|
username = ""
|
|
|
|
[[bootstrap.content.export.routes]]
|
|
mqtt_topic = ""
|
|
nats_topic = ">"
|
|
subtopic = ""
|
|
type = "plain"
|
|
workers = 10
|
|
|
|
[[clients]]
|
|
name = "client"
|
|
|
|
[clients.metadata]
|
|
external_id = "xxxxxx"
|
|
|
|
[[channels]]
|
|
name = "control-channel"
|
|
|
|
[channels.metadata]
|
|
type = "control"
|
|
|
|
[[channels]]
|
|
name = "data-channel"
|
|
|
|
[channels.metadata]
|
|
type = "data"
|