* Add documentation for Drupal * Alter headings * address feedback * address feedback * address feedback * Update website/integrations/services/drupal/index.md Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com> Signed-off-by: Sally Young <github@justa.fish> * Update website/integrations/services/drupal/index.md Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com> Signed-off-by: Sally Young <github@justa.fish> * Update website/integrations/services/drupal/index.md Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com> Signed-off-by: Sally Young <github@justa.fish> * Update website/integrations/services/drupal/index.md Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com> Signed-off-by: Sally Young <github@justa.fish> * Update website/integrations/services/drupal/index.md Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com> Signed-off-by: Sally Young <github@justa.fish> * Update website/integrations/services/drupal/index.md Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com> Signed-off-by: Sally Young <github@justa.fish> * Update website/integrations/services/drupal/index.md Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com> Signed-off-by: Sally Young <github@justa.fish> * address feedback * address feedback and fix tests --------- Signed-off-by: Sally Young <github@justa.fish> Co-authored-by: Tana M Berry <tanamarieberry@yahoo.com>
3.3 KiB
title, sidebar_label, support_level
| title | sidebar_label | support_level |
|---|---|---|
| Integrate with Drupal | Drupal | community |
What is Drupal
Drupal is a free and open-source content management system written in PHP and paired with a database.
:::note There are many different modules for Drupal that allow you to set up SSO using different authentication methods. This tutorial uses the OpenID Connect / OAuth client module. :::
Preparation
The following placeholders are used in this guide:
drupal.companyis the FQDN of Drupal installation.authentik.companyis the FQDN of authentik installation.
:::note This documentation lists only the settings that you need to change from their default values. Be aware that any changes other than those explicitly mentioned in this guide could cause issues accessing your application. :::
authentik configuration
Provider
- Go to Applications -> Providers https://authentik.company/if/admin/#/core/providers
- Create an OAuth2/OpenID Provider
- Set the Authentication flow to default-authentication-flow
- The Authorisation flow can be either default-provider-authorization-implicit-consent or default-provider-authorization-explicit-consent
- Set the Client type to "Confidential"
- Note the Cliend ID and Client Secret
- Set the Redirect URIs/Origins to your Drupal site https://drupal.company/openid-connect/generic
- Leave everything else as-is
Application
- Go to Applications -> Applications https://authentik.company/if/admin/#/core/applications
- Create an application e.g. "Drupal" and set the Provider field to the provider created above
Drupal configuration
- From the Admin Toolbar or admin page at https://drupal.company/admin go to Configuration -> Web Services -> OpenID Connect or directly at https://drupal.company/admin/config/services/openid-connect.
- Input the Client ID and Secret you noted above.
- Fill out the following endpoints:
- Authorization endpoint: https://authentik.company/application/o/authorize/
- Token endpoint: https://authentik.company/application/o/token/
- UserInfo endpoint: https://authentik.company/application/o/userinfo/
- If your User Registration settings (Admin -> Configuration -> People -> Account Settings or https://drupal.company/admin/config/people/accounts) does not allow new users, check the "Override registration settings" checkbox to enable new accounts to be created. If you do not check this and log in as an unknown user, you will get a message saying you've successfully logged in but your account is blocked and needs to be approved by an administrator. Individual accounts can be unblocked at Admin -> People or https://drupal.company/admin/people.
:::info
If you are developing Drupal locally with DDEV and authentik is also running
locally, use host.docker.internal:9000 as the hostname for the Token and UserInfo endpoints.
::: 5. Enable the OpenID button on the user login form.
Configuration verification
To confirm that authentik is properly configured with Drupal, log out from the Admin Toolbar link under your username, or go directly to https://drupal.company/user/logout, and log back in via authentik at https://drupal.company/user/login.