Blame | Last modification | View Log | RSS feed
# =======================# Shiro INI configuration# =======================[main]# Objects and their properties are defined here,# Such as the securityManager, Realms and anything# else needed to build the SecurityManagerinventoryAuthorizingRealm = in.shop2020.serving.auth.InventoryAuthorizingRealmsha256Matcher = org.apache.shiro.authc.credential.HashedCredentialsMatchersha256Matcher.hashAlgorithmName=SHA-256inventoryAuthorizingRealm.credentialsMatcher = $sha256Matcherauthc = in.shop2020.serving.auth.VerboseFilterauthc.loginUrl = /login.htmlauthc.successUrl = /# 2 hours session timeoutsecurityManager.sessionManager.globalSessionTimeout = 7200000[users]# The 'users' section is for simple deployments# when you only need a small number of statically-defined# set of User accounts.root = secret, admin[roles]# The 'roles' section is for simple deployments# when you only need a small number of statically-defined# roles.admin = *[urls]# The 'urls' section is used for url-based security# in web applications. We'll discuss this section in the# Web documentation