mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-08-06 06:04:32 -07:00
Merge pull request #116 from Footur/keystore
[keycloak_quarkus] Enable config of a key store and trust store
This commit is contained in:
commit
cee02cfd36
6 changed files with 56 additions and 9 deletions
|
@ -19,10 +19,18 @@ http-relative-path={{ keycloak_quarkus_http_relative_path }}
|
|||
|
||||
# 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 %}
|
||||
|
||||
# Client URL configuration
|
||||
{% if keycloak_quarkus_frontend_url %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue