mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-08-19 20:41:52 -07:00
Enable config of a key store and trust store
This commit is contained in:
parent
00e6cb6b0e
commit
e842462a22
6 changed files with 57 additions and 10 deletions
|
@ -18,10 +18,18 @@ http-port={{ keycloak_quarkus_http_port }}
|
|||
|
||||
# HTTPS
|
||||
https-port={{ keycloak_quarkus_https_port }}
|
||||
{% if keycloak_quarkus_https_enabled %}
|
||||
{% if keycloak_quarkus_https_key_file_enabled %}
|
||||
https-certificate-file={{ keycloak_quarkus_cert_file}}
|
||||
https-certificate-key-file={{ keycloak_quarkus_key_file }}
|
||||
{% endif %}
|
||||
{% if keycloak_quarkus_https_key_store_enabled %}
|
||||
https-key-store-file={{ keycloak_quarkus_key_store_file }}
|
||||
https-key-store-password={{ keycloak_quarkus_key_store_password }}
|
||||
{% endif %}
|
||||
{% if keycloak_quarkus_https_trust_store_enabled %}
|
||||
https-trust-store-file={{ keycloak_quarkus_trust_store_file }}
|
||||
https-trust-store-password={{ keycloak_quarkus_trust_store_password }}
|
||||
{% endif %}
|
||||
|
||||
# Hostname for the Keycloak server.
|
||||
hostname={{ keycloak_quarkus_host }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue