37584a24e0
KEYCLOAK-2550 Typo in userguide KEYCLOAK-1928 Kerberos working with IBM JDK KEYCLOAK-1928 Remove sun.jdk.jgss module KEYCLOAK-1928 Fix kerberos with adapter on JDK7 KPR-147 - Initial login scenarios around admin password - test KEYCLOAK-2561 Fix issues with blank password KEYCLOAK-2559 Missing add/remove button for 'Valid Redirect URIs' in a client settings form Added simple test for JPA performance (with many users). Fixed "re-import" operation logging. Fixed for Timer.saveData() Fixed for Timer.saveData() ManyUsersTest: ArrayList --> LinkedList Fix AbstractUserTest Fix parentheses in login page object Add tests for IDP initiated login KEYCLOAK-1040 Allow import of realm keys (like we do for SAML) KEYCLOAK-2556 Remove required for client create root url and saml endpoint KEYCLOAK-2555 ForbiddenException when importing test realm or creating test user KEYCLOAK-2553 Unexpected form behavior while creating a client KEYCLOAK-2551 Broken navigation links while creating/editing a Client Mapper
93 lines
No EOL
2.5 KiB
JSON
Executable file
93 lines
No EOL
2.5 KiB
JSON
Executable file
{
|
|
"admin": {
|
|
"realm": "master"
|
|
},
|
|
|
|
"eventsStore": {
|
|
"provider": "${keycloak.eventsStore.provider:jpa}"
|
|
},
|
|
|
|
"eventsListener": {
|
|
"jboss-logging" : {
|
|
"success-level": "debug",
|
|
"error-level": "warn"
|
|
}
|
|
},
|
|
|
|
"realm": {
|
|
"provider": "${keycloak.realm.provider:jpa}"
|
|
},
|
|
|
|
"user": {
|
|
"provider": "${keycloak.user.provider:jpa}"
|
|
},
|
|
|
|
"userSessionPersister": {
|
|
"provider": "${keycloak.userSessionPersister.provider:jpa}"
|
|
},
|
|
|
|
"userCache": {
|
|
"default" : {
|
|
"enabled": true
|
|
}
|
|
},
|
|
|
|
"timer": {
|
|
"provider": "basic"
|
|
},
|
|
|
|
"theme": {
|
|
"staticMaxAge": "${keycloak.theme.staticMaxAge:2592000}",
|
|
"cacheTemplates": "${keycloak.theme.cacheTemplates:true}",
|
|
"cacheThemes": "${keycloak.theme.cacheThemes:true}",
|
|
"folder": {
|
|
"dir": "${keycloak.theme.dir}"
|
|
}
|
|
},
|
|
|
|
"scheduled": {
|
|
"interval": 900
|
|
},
|
|
|
|
"connectionsHttpClient": {
|
|
"default": {}
|
|
},
|
|
|
|
|
|
"connectionsJpa": {
|
|
"default": {
|
|
"url": "${keycloak.connectionsJpa.url:jdbc:h2:mem:test}",
|
|
"driver": "${keycloak.connectionsJpa.driver:org.h2.Driver}",
|
|
"driverDialect": "${keycloak.connectionsJpa.driverDialect:}",
|
|
"user": "${keycloak.connectionsJpa.user:sa}",
|
|
"password": "${keycloak.connectionsJpa.password:}",
|
|
"databaseSchema": "${keycloak.connectionsJpa.databaseSchema:update}",
|
|
"showSql": "${keycloak.connectionsJpa.showSql:false}",
|
|
"formatSql": "${keycloak.connectionsJpa.formatSql:true}"
|
|
}
|
|
},
|
|
|
|
"connectionsMongo": {
|
|
"default": {
|
|
"host": "${keycloak.connectionsMongo.host:127.0.0.1}",
|
|
"port": "${keycloak.connectionsMongo.port:27017}",
|
|
"db": "${keycloak.connectionsMongo.db:keycloak}",
|
|
"databaseSchema": "${keycloak.connectionsMongo.databaseSchema:update}",
|
|
"connectionsPerHost": "${keycloak.connectionsMongo.connectionsPerHost:100}"
|
|
}
|
|
},
|
|
|
|
"realmCache": {
|
|
"default" : {
|
|
"enabled": true
|
|
}
|
|
},
|
|
|
|
"connectionsInfinispan": {
|
|
"default": {
|
|
"clustered": "${keycloak.connectionsInfinispan.clustered:false}",
|
|
"async": "${keycloak.connectionsInfinispan.async:false}",
|
|
"sessionsOwners": "${keycloak.connectionsInfinispan.sessionsOwners:2}"
|
|
}
|
|
}
|
|
} |