mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-07-31 17:11:33 -07:00
Add support for more http-related configs
* keycloak_quarkus_http_relative_path var now populate http-relative-path config [breaking change] * http-relative-path defaults to / [breaking change] * enable configuration of hostname-url and hostname-admin-url
This commit is contained in:
parent
92639e40cb
commit
316cde4759
6 changed files with 27 additions and 11 deletions
|
@ -97,6 +97,10 @@ argument_specs:
|
|||
default: -1
|
||||
description: "The port used by the proxy when exposing the hostname"
|
||||
type: "int"
|
||||
keycloak_quarkus_path:
|
||||
default: ""
|
||||
description: "This should be set if proxy uses a different context-path for Keycloak"
|
||||
type: "str"
|
||||
keycloak_quarkus_http_enabled:
|
||||
default: true
|
||||
description: "Enable listener on HTTP port"
|
||||
|
@ -149,14 +153,16 @@ argument_specs:
|
|||
description: "Enable auto configuration for database backend"
|
||||
type: "str"
|
||||
keycloak_quarkus_http_relative_path:
|
||||
# line 41 of defaults/main.yml
|
||||
default: "auth"
|
||||
description: "Service context path"
|
||||
type: "str"
|
||||
keycloak_quarkus_frontend_url:
|
||||
# line 41 of defaults/main.yml
|
||||
default: "http://localhost:8080/auth"
|
||||
description: "Service public URL"
|
||||
default: ""
|
||||
type: "str"
|
||||
keycloak_quarkus_admin_url:
|
||||
description: "Service URL for the admin console"
|
||||
default: ""
|
||||
type: "str"
|
||||
keycloak_quarkus_metrics_enabled:
|
||||
# line 43 of defaults/main.yml
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue