mirror of
https://github.com/mainflux/mainflux.git
synced 2025-04-27 13:48:49 +08:00

* remove owner id Signed-off-by: Mirko Teodorovic <mirko.teodorovic@gmail.com> * fix default port and certs settings Signed-off-by: Mirko Teodorovic <mirko.teodorovic@gmail.com> * small typo fix Signed-off-by: Mirko Teodorovic <mirko.teodorovic@gmail.com> * refactor env vars Signed-off-by: Mirko Teodorovic <mirko.teodorovic@gmail.com> * revert users Signed-off-by: Mirko Teodorovic <mirko.teodorovic@gmail.com>
47 lines
759 B
TOML
47 lines
759 B
TOML
file = "config.toml"
|
|
|
|
[bootstrap]
|
|
autowhite_list = true
|
|
content = ""
|
|
provision = true
|
|
x509_provision = false
|
|
|
|
|
|
[server]
|
|
LogLevel = "info"
|
|
ca_certs = ""
|
|
http_port = "8190"
|
|
mf_api_key = ""
|
|
mf_bs_url = "http://localhost:8202"
|
|
mf_certs_url = "http://localhost/certs"
|
|
mf_pass = ""
|
|
mf_user = ""
|
|
mf_white_list = "http://localhost:8202/things/state"
|
|
mqtt_url = ""
|
|
port = ""
|
|
server_cert = ""
|
|
server_key = ""
|
|
things_location = "http://localhost:8182"
|
|
tls = true
|
|
users_location = ""
|
|
|
|
[[things]]
|
|
name = "thing"
|
|
|
|
[things.metadata]
|
|
external_id = "xxxxxx"
|
|
|
|
|
|
[[channels]]
|
|
name = "control-channel"
|
|
|
|
[channels.metadata]
|
|
type = "control"
|
|
|
|
[[channels]]
|
|
name = "data-channel"
|
|
|
|
[channels.metadata]
|
|
type = "data"
|
|
|