chore: replace = by : in conf

This commit is contained in:
Zhongwen Deng 2022-05-24 21:54:35 +08:00
parent 2b4b3d1b56
commit 8519b161dc
2 changed files with 10 additions and 10 deletions

View File

@ -10,19 +10,19 @@
node { node {
name: "emqx@127.0.0.1" name: "emqx@127.0.0.1"
cookie = emqxsecretcookie cookie: emqxsecretcookie
data_dir = "{{ platform_data_dir }}" data_dir: "{{ platform_data_dir }}"
etc_dir = "{{ platform_etc_dir }}" etc_dir: "{{ platform_etc_dir }}"
} }
log { log {
file_handlers.default { file_handlers.default {
level = warning level: warning
file = "{{ platform_log_dir }}/emqx.log" file: "{{ platform_log_dir }}/emqx.log"
} }
} }
cluster { cluster {
name = emqxcl name: emqxcl
discovery_strategy = manual discovery_strategy: manual
} }

View File

@ -1,7 +1,7 @@
dashboard { dashboard {
listeners.http { listeners.http {
bind = 18083 bind: 18083
} }
default_username = "admin" default_username: "admin"
default_password = "public" default_password: "public"
} }