30 lines
781 B
Plaintext
30 lines
781 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: emqxsecretcookie
|
|
data_dir: "{{ platform_data_dir }}"
|
|
etc_dir: "{{ platform_etc_dir }}"
|
|
applications: "{{ emqx_machine_boot_apps }}"
|
|
}
|
|
|
|
log {
|
|
file_handlers.default {
|
|
level: warning
|
|
file: "{{ platform_log_dir }}/emqx.log"
|
|
}
|
|
}
|
|
|
|
cluster {
|
|
name: emqxcl
|
|
discovery_strategy: manual
|
|
}
|