docs/content/integration/openid-connect/clients/kanboard/index.md
{{% oidc-common %}}
This example makes the following assumptions:
https://kanboard.{{< sitevar name="domain" nojs="example.com" >}}/https://{{< sitevar name="subdomain-authelia" nojs="auth" >}}.{{< sitevar name="domain" nojs="example.com" >}}/kanboardinsecure_secretSome of the values presented in this guide can automatically be replaced with documentation variables.
{{< sitevar-preferences >}}
The following YAML configuration is an example Authelia client configuration for use with Kanboard which will operate with the application example:
identity_providers:
oidc:
## The other portions of the mandatory OpenID Connect 1.0 configuration go here.
## See: https://www.authelia.com/c/oidc
clients:
- client_id: 'kanboard'
client_name: 'Kanboard'
public: true
authorization_policy: 'two_factor'
require_pkce: true
pkce_challenge_method: 'S256'
redirect_uris:
- 'https://kanboard.{{< sitevar name="domain" nojs="example.com" >}}/oauth/callback'
scopes:
- 'openid'
- 'email'
- 'profile'
response_modes:
- 'form_post'
response_types:
- 'code'
grant_types:
- 'authorization_code'
access_token_signed_response_alg: 'none'
userinfo_signed_response_alg: 'none'
token_endpoint_auth_method: 'client_secret_post'
To configure Kanboard there is one method, using the Web GUI.
To configure Kanboard to utilize Authelia as an OpenID Connect 1.0 Provider, use the following instructions:
Settings in the menu displayed when you click your profile icon.Plugins.OAuth2 plugin and click Install.Settings.Integrations.OAuth2 Authentication and configure the following values:
kanboardinsecure_secrethttps://{{< sitevar name="subdomain-authelia" nojs="auth" >}}.{{< sitevar name="domain" nojs="example.com" >}}/api/oidc/authorizationhttps://{{< sitevar name="subdomain-authelia" nojs="auth" >}}.{{< sitevar name="domain" nojs="example.com" >}}/api/oidc/tokenhttps://{{< sitevar name="subdomain-authelia" nojs="auth" >}}.{{< sitevar name="domain" nojs="example.com" >}}/api/oidc/userinfoopenid email profilepreferred_usernamenameemailsubSave.