From 002560ef3eab5e05cf1f74b880f8ce7349d2b439 Mon Sep 17 00:00:00 2001 From: Pedro Aguiar Date: Wed, 2 Oct 2024 11:45:36 -0400 Subject: [PATCH] update/fix-typo-confFileValue-should-be-keystoreValue - "confFileValue" appears twice consecutively in the same paragraph; the second occurrence should be "keystoreValue". Thanks to Justin P for pointing that out in [1]. [1] https://github.com/keycloak/keycloak/discussions/33292 Signed-off-by: Pedro Aguiar --- docs/guides/server/configuration.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/server/configuration.adoc b/docs/guides/server/configuration.adoc index 7b59f5122a..e5c782a642 100644 --- a/docs/guides/server/configuration.adoc +++ b/docs/guides/server/configuration.adoc @@ -41,7 +41,7 @@ The following example shows how the `db-url` value is set in four configuration Based on the priority of application, the value that is used at startup is `cliValue`, because the command line is the highest priority. -If `--db-url=cliValue` had not been used, the applied value would be `KC_DB_URL=envVarValue`. If the value were not applied by either the command line or an environment variable, `db-url=confFileValue` would be used. If none of the previous values were applied, the value `kc.db-url=confFileValue` would be used due to the lowest priority among the available configuration sources. +If `--db-url=cliValue` had not been used, the applied value would be `KC_DB_URL=envVarValue`. If the value were not applied by either the command line or an environment variable, `db-url=confFileValue` would be used. If none of the previous values were applied, the value `kc.db-url=keystoreValue` would be used due to the lowest priority among the available configuration sources. == Formats for configuration The configuration uses a _unified-per-source_ format, which simplifies translation of a key/value pair from one configuration source to another. Note that these formats apply to spi options as well.