Relative path is now customizable.

This commit is contained in:
Andrea Dell'Amico 2022-09-25 14:31:50 +02:00
parent f86f29f873
commit 9ecc2c2360
Signed by: adellam
GPG Key ID: 147ABE6CEB9E20FF
2 changed files with 3 additions and 1 deletions

View File

@ -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

View File

@ -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 }}