keycloak/docs/documentation
Marek Posolda f29249f3d7
Improve performance of scope processing in TokenManager. Limit for maximum length of OIDC parameters in Token endpoint (#478) (#47799)
closes #47716
Closes CVE-2026-4634


(cherry picked from commit b455ee4f28)

Signed-off-by: mposolda <mposolda@gmail.com>
2026-04-07 11:17:17 +02:00
..
aggregation Add missing artifact descriptions to allow Maven Central Portal Publisher pass validation process. (#40822) 2025-08-12 16:50:17 +02:00
api_documentation Add missing artifact descriptions to allow Maven Central Portal Publisher pass validation process. (#40822) 2025-08-12 16:50:17 +02:00
authorization_services Fixing authorization service docs to remove references to the default settings 2026-02-13 17:18:15 +01:00
dist Add missing artifact descriptions to allow Maven Central Portal Publisher pass validation process. (#40822) 2025-08-12 16:50:17 +02:00
header-maven-plugin Add missing artifact descriptions to allow Maven Central Portal Publisher pass validation process. (#40822) 2025-08-12 16:50:17 +02:00
internal_resources
release_notes Add KCRAW_ prefix for environment variables to preserve literal values (#47197) 2026-04-07 10:12:18 +02:00
server_admin Add troubleshooting section to workflows documentation 2026-04-02 00:05:04 +02:00
server_development Documentation for brokering API V2 and make it preview 2026-03-26 11:13:58 +01:00
tests Add KCRAW_ prefix for environment variables to preserve literal values (#47197) 2026-04-07 10:12:18 +02:00
topics/templates Downgrade server container image back to OpenJDK 21 (#46813) 2026-03-10 14:26:11 +01:00
upgrading Improve performance of scope processing in TokenManager. Limit for maximum length of OIDC parameters in Token endpoint (#478) (#47799) 2026-04-07 11:17:17 +02:00
.asciidoctorconfig
.gitattributes
.gitignore
.vale.ini
build-auto.sh Make shebang in bash scripts consistent (#37369) 2026-02-17 11:32:28 +01:00
get-version.sh Make shebang in bash scripts consistent (#37369) 2026-02-17 11:32:28 +01:00
License.html
pom.xml Add missing artifact descriptions to allow Maven Central Portal Publisher pass validation process. (#40822) 2025-08-12 16:50:17 +02:00
README.md Java 25 support (#45872) 2026-02-10 23:35:35 +00:00

Keycloak Documentation

Open Source Identity and Access Management for modern Applications and Services.

For more information about Keycloak visit the Keycloak homepage and Keycloak blog.

Contributing to Keycloak Documentation

See our Contributor's Guide. The directory also includes a set of templates and other resources to help you get started.

If you want to file a bug report or tell us about any other issue with this documentation, you are invited to please use our issue tracker.

Building Keycloak Documentation

Ensure that you have Maven installed.

First, clone the Keycloak repository:

git clone https://github.com/keycloak/keycloak.git
cd keycloak/docs/documentation

If you are using Windows, you need to run the following command with administrator privilege because this project uses symbolic links:

git clone -c core.symlinks=true https://github.com/keycloak/keycloak.git

To build Keycloak Documentation run:

./mvnw clean install -am -pl docs/documentation/dist -Pdocumentation

Or to build a specific guide run:

./mvnw clean install -pl docs/documentation/GUIDE_DIR -Pdocumentation

By default, an archive version of the documentation is built. To build the latest build run:

./mvnw clean install ... -Platest,documentation

You can then view the documentation by opening docs/documentation/GUIDE_DIR/target/generated-docs/index.html.

To build the REST API documentation and the Javadoc:

  • Export the JAVA_HOME variable, for example:
    export JAVA_HOME=/usr/lib/jvm/java-25-openjdk
    
    (without this, you may get the following error: Unable to find javadoc command: The environment variable JAVA_HOME is not correctly set.)
  • Run:
    ./mvnw clean package -am -pl services -Pjboss-release -DskipTests
    

You can view the generated docs by opening the following files:

  • REST API: services/target/apidocs-rest/output/index.html
  • Javadoc: services/target/apidocs/index.html

License