chore: change the value of all feature switches to `enable` in examples
This commit is contained in:
parent
a6aae657a9
commit
4d1de6509d
|
@ -51,9 +51,6 @@ dashboard {
|
||||||
## Enable or disable peer verification
|
## Enable or disable peer verification
|
||||||
verify = verify_none ## use verify_peer to enable
|
verify = verify_none ## use verify_peer to enable
|
||||||
|
|
||||||
## if `verify' is ebabled, whit true, the connection fails if the client does not have a certificate to send
|
|
||||||
fail_if_no_peer_cert = false
|
|
||||||
|
|
||||||
## Enable TLS session reuse
|
## Enable TLS session reuse
|
||||||
reuse_sessions = true
|
reuse_sessions = true
|
||||||
|
|
||||||
|
|
|
@ -23,6 +23,6 @@ prometheus {
|
||||||
## - ${host}: Host name of EMQX node
|
## - ${host}: Host name of EMQX node
|
||||||
job_name = "${name}/instance/${name}~${host}"
|
job_name = "${name}/instance/${name}~${host}"
|
||||||
|
|
||||||
## set true to enable this
|
## set to false to enable this
|
||||||
enable = false
|
enable = true
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,8 +7,8 @@
|
||||||
## you should copy and paste the below data into the emqx.conf for working
|
## you should copy and paste the below data into the emqx.conf for working
|
||||||
|
|
||||||
psk_authentication {
|
psk_authentication {
|
||||||
## set true to enable TLS PSK support
|
## set to false to disable
|
||||||
enable = false
|
enable = true
|
||||||
|
|
||||||
## If init_file is specified, EMQX will import PSKs from the file into the built-in database at startup for use by the runtime
|
## If init_file is specified, EMQX will import PSKs from the file into the built-in database at startup for use by the runtime
|
||||||
init_file = "psk"
|
init_file = "psk"
|
||||||
|
|
Loading…
Reference in New Issue