28 lines
723 B
Plaintext
28 lines
723 B
Plaintext
## NOTE:
|
|
## Configs in this file might be overridden by:
|
|
## 1. Environment variables which start with 'EMQX_' prefix
|
|
## 2. File $EMQX_NODE__DATA_DIR/configs/cluster-override.conf
|
|
## 3. File $EMQX_NODE__DATA_DIR/configs/local-override.conf
|
|
##
|
|
## The *-override.conf files are overwritten at runtime when changes
|
|
## are made from EMQX dashboard UI, management HTTP API, or CLI.
|
|
## All configuration details can be found in emqx.conf.example
|
|
|
|
node {
|
|
name = "emqx@127.0.0.1"
|
|
cookie = "{{ emqx_default_erlang_cookie }}"
|
|
data_dir = "{{ platform_data_dir }}"
|
|
}
|
|
|
|
log {
|
|
file_handlers.default {
|
|
level = warning
|
|
file = "{{ platform_log_dir }}/emqx.log"
|
|
}
|
|
}
|
|
|
|
cluster {
|
|
name = emqxcl
|
|
discovery_strategy = manual
|
|
}
|