Last active
June 5, 2024 14:46
-
-
Save vincentchalamon/81ab81fbe19d36d4ea75d78c6a5388c3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ... | |
# Matches requests for OIDC routes | |
@oidc expression path('/oidc/*') | |
route { | |
# ... | |
reverse_proxy @oidc http://{$OIDC_UPSTREAM} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.8" | |
services: | |
# ... | |
php: | |
# ... | |
environment: | |
# ... | |
OIDC_UPSTREAM: keycloak:8080 | |
keycloak: | |
image: bitnami/keycloak:21-debian-11 | |
environment: | |
# ... | |
# Must finish with a trailing slash (https://github.com/bitnami/charts/issues/10885#issuecomment-1414279144) | |
KEYCLOAK_HTTP_RELATIVE_PATH: /oidc/ | |
# https://www.keycloak.org/server/hostname | |
KC_HOSTNAME_URL: https://${SERVER_NAME:-localhost}/oidc/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Merci pour le retour !