Solved bugs

This commit is contained in:
Kevin Veen-Birkenbach 2025-04-06 19:06:56 +02:00
parent df538033d9
commit a9c25a28c6
No known key found for this signature in database
GPG Key ID: 44D8F11FD62F878E
5 changed files with 5 additions and 5 deletions

View File

@ -649,7 +649,7 @@ defaults_applications:
## PHPMyAdmin ## PHPMyAdmin
phpmyadmin: phpmyadmin:
version: "latest" version: "latest" # Use the latest phpmyadmin version
autologin: false # This is a high security risk. Just activate this option if you know what you're doing autologin: false # This is a high security risk. Just activate this option if you know what you're doing
oauth2_proxy: oauth2_proxy:
enabled: true enabled: true

View File

@ -19,7 +19,7 @@ defaults_oidc:
issuer_url: "{{_oidc_client_issuer_url}}" # Base URL of the OIDC provider (issuer) issuer_url: "{{_oidc_client_issuer_url}}" # Base URL of the OIDC provider (issuer)
discovery_document: "{{_oidc_client_issuer_url}}/.well-known/openid-configuration" # URL for fetching the provider's configuration details discovery_document: "{{_oidc_client_issuer_url}}/.well-known/openid-configuration" # URL for fetching the provider's configuration details
authorize_url: "{{_oidc_client_issuer_url}}/protocol/openid-connect/auth" # Endpoint to start the authorization process authorize_url: "{{_oidc_client_issuer_url}}/protocol/openid-connect/auth" # Endpoint to start the authorization process
toke_url: "{{_oidc_client_issuer_url}}/protocol/openid-connect/token" # Endpoint to exchange authorization codes for tokens (note: 'toke_url' may be a typo for 'token_url') token_url: "{{_oidc_client_issuer_url}}/protocol/openid-connect/token" # Endpoint to exchange authorization codes for tokens (note: 'token_url' may be a typo for 'token_url')
user_info_url: "{{_oidc_client_issuer_url}}/protocol/openid-connect/userinfo" # Endpoint to retrieve user information user_info_url: "{{_oidc_client_issuer_url}}/protocol/openid-connect/userinfo" # Endpoint to retrieve user information
logout_url: "{{_oidc_client_issuer_url}}/protocol/openid-connect/logout" # Endpoint to log out the user logout_url: "{{_oidc_client_issuer_url}}/protocol/openid-connect/logout" # Endpoint to log out the user
change_credentials: "{{_oidc_client_issuer_url}}account/account-security/signing-in" # URL for managing or changing user credentials change_credentials: "{{_oidc_client_issuer_url}}account/account-security/signing-in" # URL for managing or changing user credentials

View File

@ -29,7 +29,7 @@ plugin_configuration:
title: "keycloak" title: "keycloak"
style: "keycloak" style: "keycloak"
authorizeUrl: "{{ oidc.client.authorize_url }}" authorizeUrl: "{{ oidc.client.authorize_url }}"
tokenUrl: "{{ oidc.client.toke_url }}" tokenUrl: "{{ oidc.client.token_url }}"
displayNameClaim: "" displayNameClaim: ""
userInfoUrl: "{{ oidc.client.user_info_url }}" userInfoUrl: "{{ oidc.client.user_info_url }}"
logoutUrl: "{{ oidc.client.logout_url }}" logoutUrl: "{{ oidc.client.logout_url }}"

View File

@ -1,7 +1,7 @@
# Configuration @see https://hub.docker.com/_/phpmyadmin # Configuration @see https://hub.docker.com/_/phpmyadmin
PMA_HOST= central-mariadb PMA_HOST= central-mariadb
{% if applications.[application_id].autologin | bool %} {% if applications[application_id].autologin | bool %}
PMA_USER= root PMA_USER= root
PMA_PASSWORD= "{{central_mariadb_root_password}}" PMA_PASSWORD= "{{central_mariadb_root_password}}"
{% endif %} {% endif %}

View File

@ -50,7 +50,7 @@ ENABLE_TELEMETRY = True
{% if applications[application_id].oidc.enabled %} {% if applications[application_id].oidc.enabled %}
# OICD # OICD
# @See https://github.com/robrotheram/taiga-contrib-openid-auth # @See https://github.com/robrotheram/taiga-contrib-openid-auth
ENABLE_OPENID="True" ENABLE_OPENID=True
OPENID_URL="{{oidc.client.authorize_url}}" OPENID_URL="{{oidc.client.authorize_url}}"
OPENID_USER_URL="{{oidc.client.user_info_url}}" OPENID_USER_URL="{{oidc.client.user_info_url}}"
OPENID_TOKEN_URL="{{oidc.client.token_url}}" OPENID_TOKEN_URL="{{oidc.client.token_url}}"