mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-04-20 15:04:57 +02:00
Solved bugs
This commit is contained in:
parent
df538033d9
commit
a9c25a28c6
@ -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
|
||||||
|
@ -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
|
||||||
|
@ -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 }}"
|
||||||
|
@ -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 %}
|
@ -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}}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user