From 9ecc2c2360c40402f9f81bd14d954c59f9ff5319 Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Sun, 25 Sep 2022 14:31:50 +0200 Subject: [PATCH] Relative path is now customizable. --- defaults/main.yml | 2 ++ templates/keycloak.conf.j2 | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/defaults/main.yml b/defaults/main.yml index 24fc6f3..4f5ccfe 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -33,6 +33,8 @@ keycloak_https_enabled: true keycloak_https_protocols: 'TLSv1.3' keycloak_letsencrypt_certs: '{{ keycloak_https_enabled }}' keycloak_http_enabled: "{% if keycloak_https_enabled %}'false'{% else %}'true'{% endif %}" +# Set to /auth to be backward compatible with the old admin console +keycloak_http_relative_path: / keycloak_listen: '127.0.0.1' keycloak_http_port: 8080 keycloak_https_port: 8443 diff --git a/templates/keycloak.conf.j2 b/templates/keycloak.conf.j2 index b66bd1f..9287a0c 100644 --- a/templates/keycloak.conf.j2 +++ b/templates/keycloak.conf.j2 @@ -1,5 +1,5 @@ -http-relative-path=/auth +http-relative-path={{ keycloak_http_relative_path }} http-enabled={{ keycloak_http_enabled }} http-host={{ keycloak_listen }} http-port={{ keycloak_http_port }}