forked from tadayosi/artemis-jolokia-docker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanagement.xml
30 lines (30 loc) · 1.03 KB
/
management.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<management-context xmlns="http://activemq.org/schema">
<authorisation>
<whitelist>
<entry domain="hawtio"/>
<!--
For hawtio-online, RBAC is checked at the hawtio nginx reverse proxy
and must not be checked at broker.
See: https://github.com/hawtio/hawtio-online#rbac
-->
<entry domain="org.apache.activemq.artemis"/>
</whitelist>
<default-access>
<access method="list*" roles="amq"/>
<access method="get*" roles="amq"/>
<access method="is*" roles="amq"/>
<access method="set*" roles="amq"/>
<access method="*" roles="amq"/>
</default-access>
<role-access>
<match domain="org.apache.activemq.artemis">
<access method="list*" roles="amq"/>
<access method="get*" roles="amq"/>
<access method="is*" roles="amq"/>
<access method="set*" roles="amq"/>
<access method="*" roles="amq"/>
</match>
</role-access>
</authorisation>
</management-context>