Ajout url de redireciton de logout pour hydra et hydra-oidc (#5)

Reviewed-on: #5
This commit is contained in:
Matthieu Lamalle 2023-01-24 14:11:25 +01:00
parent f178677b12
commit 5b7f958bfb
3 changed files with 4 additions and 1 deletions

View File

@ -44,6 +44,7 @@ hydra_urls_consent: "{{ haproxy_public_base_url }}{{ haproxy_hydra_dispatcher_ba
hydra_urls_login: "{{ haproxy_public_base_url }}{{ haproxy_hydra_dispatcher_base_path }}/login"
hydra_urls_logout: "{{ haproxy_public_base_url }}{{ haproxy_hydra_dispatcher_base_path }}/logout"
hydra_url_post_logout: "{{ haproxy_public_base_url }}"
hydra_urls_error: "{{ haproxy_public_base_url }}/erreur"
hydra_log_level: warn

View File

@ -15,6 +15,7 @@ PODMAN_ARGS="\
-e 'OIDC_LOGOUT_ENDPOINT={{ hydra_oidc_logout_endpoint }}' \
-e 'POST_LOGOUT_REDIRECT_URL={{ hydra_oidc_post_logout_redirect_url }}' \
-e 'BASE_URL={{ haproxy_public_base_url }}{{ haproxy_hydra_oidc_base_path }}' \
-e 'REDIRECT_ON_ERROR_URL={{ hydra_urls_error }}'
-e 'OIDC_SCOPE={{ hydra_oidc_scope }}' \
-e 'CLIENT_ID_FC={{ hydra_oidc_client_id }}' \
-e 'CLIENT_SECRET_FC={{ hydra_oidc_client_secret }}' \
@ -22,4 +23,4 @@ PODMAN_ARGS="\
{% for key,value in hydra_oidc_additionnal_env.items() %}
-e '{{ key }}={{ value }}' \
{% endfor %}
"
"

View File

@ -14,6 +14,7 @@ PODMAN_ARGS="\
-e 'HYDRA_URLS_CONSENT={{ hydra_urls_consent }}' \
-e 'HYDRA_URLS_LOGIN={{ hydra_urls_login }}' \
-e 'HYDRA_URLS_LOGOUT={{ hydra_urls_logout }}' \
-e 'HYDRA_URLS_ERROR={{ hydra_urls_error }}' \
-e 'HYDRA_URL_POST_LOGOUT={{ hydra_url_post_logout }}' \
-e 'HYDRA_ALLOW_INSECURE=yes' \
-e 'HYDRA_LEVEL={{ hydra_log_level }}' \