Add the opportunity to add custom optionswq
This commit is contained in:
parent
761dd366a6
commit
d9db72a3ff
|
@ -30,6 +30,9 @@ keycloak_remote_providers: []
|
|||
# maven_extension: ''
|
||||
# maven_version: ''
|
||||
|
||||
keycloak_additional_properties: []
|
||||
keycloak_quarkus_additional_properties: []
|
||||
|
||||
keycloak_external_avatar_dir_enabled: false
|
||||
keycloak_external_avatar_dir: '{{ keycloak_data_directory }}/avatar'
|
||||
|
||||
|
|
|
@ -57,3 +57,9 @@ log-console-output={{ keycloak_log_console_output }}
|
|||
log-file={{ keycloak_log_file }}
|
||||
log-file-format={{ keycloak_log_file_format }}
|
||||
log-level={{ keycloak_log_level }}
|
||||
|
||||
# Additional properties
|
||||
{% for keycloak_prop in keycloak_additional_properties %}
|
||||
{{ keycloak_prop }}
|
||||
{% endfor %}
|
||||
|
||||
|
|
|
@ -13,3 +13,7 @@ quarkus.http.access-log.rotation.max-file-size={{ keycloak_log_max_size }}
|
|||
quarkus.http.access-log.rotation.max-backup-index={{ keycloak_log_backup_index }}
|
||||
quarkus.http.access-log.pattern=%t [%{i,X-Forwarded-For}, %h] %l (user:%u) - '%r' => %s (%b bytes) '%{i,User-Agent}' (Referer: '%{i,Referer}') - [%I, %Dms]
|
||||
quarkus.http.record-request-start-time=true
|
||||
{% for prop in keycloak_quarkus_additional_properties %}
|
||||
{{ prop }}
|
||||
{% endfor %}
|
||||
|
||||
|
|
Loading…
Reference in New Issue