[AMQ-9385] Minor default jaas realm config clean-ups and documentation

This commit is contained in:
Matt Pavlovich 2023-11-10 11:22:31 -06:00
parent 6b4041b306
commit 38262342f2
2 changed files with 9 additions and 2 deletions

View File

@ -15,4 +15,11 @@
## limitations under the License.
## ---------------------------------------------------------------------------
# Group membership format
# groupname = user1,user2,..
#
# Example:
# users=user1,user2
# Default admins group with full access for user 'admin'
admins=admin

View File

@ -37,7 +37,7 @@
<bean id="securityConstraint" class="org.eclipse.jetty.util.security.Constraint">
<property name="name" value="BASIC" />
<property name="roles" value="user,admins" />
<property name="roles" value="users,admins" />
<!-- set authenticate=false to disable login -->
<property name="authenticate" value="true" />
</bean>