Hello,
I'm not able to have a dest_list_deny acl rule to work.
Excerpt from my config
{acl,
[ {v1, ["/v1/"]}
]
[...]
[{prefix, "/"}
,{module, cloudi_service_http_cowboy}
,{args, [{port, 6543}, ...]},
,{dest_list_deny, [v1]}
[...]
I would like this service to be denied to call any "/v1/" services.
How can I control what prefix a cowboy process can call ?
PS: I've looked at cloudi_core_i_services_internal.erl the code that should call trie:new from dest_deny, but fail to see it in the 'init' call but see it in the 'update' call. (cloudi 1.7.2 from
hex.pm)
Thanks !