10,7 → 10,7 |
realm = net.brutex.xservices.security.XServicesRealm |
securityManager.realms = $realm |
|
#authc = org.apache.shiro.web.filter.authc.FormAuthenticationFilter |
authcBasic = org.apache.shiro.web.filter.authc.BasicHttpAuthenticationFilter |
|
[users] |
# The 'users' section is for simple deployments |
18,8 → 18,8 |
# set of User accounts. |
# Format: user = password, role1, role2, ... |
|
admin = password |
brian = password, Administrator |
admin = , Administrator |
brian = brian, Administrator |
|
|
[roles] |
27,7 → 27,8 |
# when you only need a small number of statically-defined |
# roles. |
|
Administrator = c:/t*/*, c:/windows/*, d:/**/VIDEO, C:/Users/brosenberger/**, d:/data/**, c:/** |
#Administrator = c:/t*/*, c:/windows/*, d:/**/VIDEO, C:/Users/brosenberger/**, d:/data/**, c:/** |
Administrator = c:/TEMP/**, XmlService||test |
|
[urls] |
# The 'urls' section is used for url-based security |
34,9 → 35,20 |
# in web applications. We'll discuss this section in the |
# Web documentation |
|
/ArchiveService = anon |
/DateService = anon |
/ExecuteService = anon |
/FileService = anon |
/JobService = anon |
/MailService = anon |
/MiscService = anon |
/StorageService = anon |
/StringService = anon |
/XmlService = anon |
|
/** = authcBasic |
#/** = anon |
|
|
#Default filters |
#Filter Name Class |
#anon org.apache.shiro.web.filter.authc.AnonymousFilter |