Skip to content

Commit

Permalink
[!!!][TASK] Update default realm URL (#12)
Browse files Browse the repository at this point in the history
With the update to Keycloak 17+, the `/auth/` substring was removed from
realm URLs. To reflect this change, the default `jku_url` is updated.
  • Loading branch information
andreaskienast authored Jun 9, 2023
1 parent e134556 commit 3911ed1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ php bin/console debug:config t3g_keycloak
# Default configuration for extension with alias: "t3g_keycloak"
t3g_keycloak:
keycloak:
jku_url: 'https://login.typo3.com/auth/realms/TYPO3/protocol/openid-connect/certs'
jku_url: 'https://login.typo3.com/realms/TYPO3/protocol/openid-connect/certs'
user_provider_class: T3G\Bundle\Keycloak\Security\KeyCloakUserProvider
default_roles:
# Defaults:
Expand Down
2 changes: 1 addition & 1 deletion src/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public function getConfigTreeBuilder()
->arrayNode('keycloak')->addDefaultsIfNotSet()
->children()
->scalarNode('jku_url')
->defaultValue('https://login.typo3.com/auth/realms/TYPO3/protocol/openid-connect/certs')
->defaultValue('https://login.typo3.com/realms/TYPO3/protocol/openid-connect/certs')
->cannotBeEmpty()
->end()
->scalarNode('user_provider_class')
Expand Down

0 comments on commit 3911ed1

Please sign in to comment.