website/integrations/chat-communication-collaboration/kanboard/index.md
Kanboard is a free and open source Kanban project management software.
The following placeholders are used in this guide:
kanboard.company is the FQDN of your Kanboard installation.authentik.company is the FQDN of the authentik installation.:::info 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. :::
To support the integration of Kanboard with authentik, you need to create an application/provider pair in authentik.
Log in to authentik as an administrator and open the authentik Admin interface.
Navigate to Applications > Applications and click Create with Provider to create an application and provider pair. (Alternatively you can first create a provider separately, then create the application and connect it with the provider.)
Strict redirect URI to https://kanboard.company/oauth/callback.Click Submit to save the new application and provider.
Integrating Kanboard with authentik requires enabling the plugin system and installing the OAuth2 plugin.
To enable plugin management through the web interface, add the following line to your Kanboard configuration file, typically located at /var/www/app/config.php:
define('PLUGIN_INSTALLER', true);
Then, restart your server to apply the updated configuration.
| Setting | Value |
|---|---|
| Callback URL | https://kanboard.company/oauth/callback (prefilled) |
| Client ID | Client ID from authentik |
| Client Secret | Client secret from authentik |
| Authorize URL | https://authentik.company/application/o/authorize |
| Token URL | https://authentik.company/application/o/token |
| User API URL | https://authentik.company/application/o/userinfo |
| Scopes | openid profile email |
| Username Key | preferred_username |
| Name Key | name |
| Email Key | email |
| User ID Key | sub |
| Allow Account Creation | Toggled |
To confirm that authentik is properly configured with Kanboard, log out and attempt to log back in by clicking OAuth2 login.