From 5cdaa7aabbdc69ac43f5400ac834c38d383bf77b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bo=C5=BEo=20Barun?= Date: Thu, 26 Jan 2023 15:27:57 +0100 Subject: [PATCH] Update keycloak.conf.j2 The documentation states that the path is relative to the /conf directory, which is true. So if one changes the contents of this file it would have no effect because the path would be non-existent. To make things worse, there would be no obvious error stating this and the configuration would be loaded from the defaults. --- roles/keycloak_quarkus/templates/keycloak.conf.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/keycloak_quarkus/templates/keycloak.conf.j2 b/roles/keycloak_quarkus/templates/keycloak.conf.j2 index c02dbae..bd9f5bf 100644 --- a/roles/keycloak_quarkus/templates/keycloak.conf.j2 +++ b/roles/keycloak_quarkus/templates/keycloak.conf.j2 @@ -30,7 +30,7 @@ hostname-path={{ keycloak_quarkus_http_relative_path }} # Cluster {% if keycloak_quarkus_ha_enabled %} cache=ispn -cache-config-file=conf/cache-ispn.xml +cache-config-file=cache-ispn.xml cache-stack=tcp {% endif %}