Last active
November 29, 2022 08:18
-
-
Save dolph/2575ae3e7058505195ee to your computer and use it in GitHub Desktop.
Keystone OpenID Connect + Authorization Code Flow
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
<VirtualHost *:5000> | |
... | |
OIDCClaimPrefix "OIDC-" | |
OIDCResponseType "code" | |
OIDCScope "openid email profile" | |
OIDCProviderMetadataURL http://<keycloak_host>:8080/auth/realms/master/.well-known/openid-configuration | |
OIDCClientID <client_id> | |
OIDCClientSecret <client_secret> | |
OIDCCryptoPassphrase openstack | |
OIDCRedirectURI http://<openstack_host>:5000/v3/OS-FEDERATION/identity_providers/keycloak/protocols/oidc/auth/redirect | |
<LocationMatch /v3/OS-FEDERATION/identity_providers/.*?/protocols/oidc/auth> | |
AuthType oauth20 | |
Require valid-user | |
LogLevel debug | |
</LocationMatch> | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment