mirror of
https://github.com/ansible-middleware/keycloak.git
synced 2025-07-29 08:01: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
|
@ -29,6 +29,7 @@ keycloak_quarkus_master_realm: master
|
|||
keycloak_quarkus_bind_address: 0.0.0.0
|
||||
keycloak_quarkus_host: localhost
|
||||
keycloak_quarkus_port: -1
|
||||
keycloak_quarkus_path: ''
|
||||
keycloak_quarkus_http_enabled: True
|
||||
keycloak_quarkus_http_port: 8080
|
||||
keycloak_quarkus_https_port: 8443
|
||||
|
@ -47,8 +48,11 @@ keycloak_quarkus_ha_enabled: False
|
|||
keycloak_quarkus_db_enabled: "{{ True if keycloak_quarkus_ha_enabled else False }}"
|
||||
|
||||
### keycloak frontend url
|
||||
keycloak_quarkus_http_relative_path: auth
|
||||
keycloak_quarkus_frontend_url: http://localhost:8080/auth
|
||||
keycloak_quarkus_frontend_url: ''
|
||||
keycloak_quarkus_admin_url: ''
|
||||
|
||||
### path under the application is exposed (set to `auth` for retrocompatibility with pre-quarkus releases)
|
||||
keycloak_quarkus_http_relative_path: ''
|
||||
|
||||
# proxy address forwarding mode if the server is behind a reverse proxy. [none, edge, reencrypt, passthrough]
|
||||
keycloak_quarkus_proxy_mode: edge
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue