错误报告
环境
- EMQX 版本:5.0.11
- 操作系统版本:
重现此问题的步骤
emqx.conf配置文件
authorization
{
deny_action = ignore
no_match = allow
sources = [
{
type = http
enable = true
method = post
url = "http://127.0.0.1:32333/authz/${peercert}?clientid=${clientid}"
body {
username = "${username}"
topic = "${topic}"
action = "${action}"
}
headers {
"Content-Type" = "application/json"
"X-Request-Source" = "EMQX"
}
},
{
type = file
enable = true
# This file is immutable to EMQX.
# Once new rules are created from dashboard UI or HTTP API,
# the file ‘data/authz/acl.conf’ is used instead of this one
path = “etc/acl.conf”
}
]
}
预期行为
实际行为
http的接口配置没有显示