I want to set an ACL file to authorize local https calls.
I’ve done it this way:
[
{“method”: “RPC*”, “acl”: “+user”},
{“method”: “", “acl”: "-”}
]
It works as expected, but then I have trouble with mdash connecting to my ESP32 and calling RPC.
I get a message like this:
{“auth_type”: “digest”, “nonce”: 1559067642, “nc”: 1, “realm”: “some”}
How can I enable mdash to access RPC with an ACL in place? is there a special user or realm for mdash?
Thanks