* website: Bump prettier from 3.3.3 to 3.4.1 in /website Bumps [prettier](https://github.com/prettier/prettier) from 3.3.3 to 3.4.1. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/3.3.3...3.4.1) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * update formatting Signed-off-by: Jens Langhammer <jens@goauthentik.io> * sigh Signed-off-by: Jens Langhammer <jens@goauthentik.io> * disable flaky test Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Jens Langhammer <jens@goauthentik.io> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jens Langhammer <jens@goauthentik.io>
1.6 KiB
1.6 KiB
title, sidebar_label
| title | sidebar_label |
|---|---|
| Integrate with Linkwarden | Linkwarden |
Linkwarden
Support level: Community
What is Linkwarden
Linkwarden is an open-source collaborative bookmark manager used to collect, organize, and preserve webpages.
Preparation
The following placeholders will be used:
linkwarden.companyis the FQDN of the Linkwarden install.authentik.companyis the FQDN of the authentik install.
Linkwarden configuration
To configure Linkwarden to use authentik, add the following values to your .env file:
NEXT_PUBLIC_AUTHENTIK_ENABLED=true
AUTHENTIK_CUSTOM_NAME=authentik # Optionally set a custom provider name. Will be displayed on the login page
AUTHENTIK_ISSUER=https://authentik.company/application/o/linkwarden
AUTHENTIK_CLIENT_ID=<Your Client ID>
AUTHENTIK_CLIENT_SECRET=<Your Client Secret>
After making these changes, restart your Docker containers to apply the new configuration.
authentik configuration
- Access the Admin Interface in on your authentik install.
- Create a new OAuth2 / OpenID Provider.
- Note the generated Client ID and Client Secret.
- In the provider settings, add this redirect URL under Redirect URIs/Origins (RegEx):
https://linkwarden.company/api/v1/auth/callback/authentik - Click Finish to save the provider configuration.
- Create a new application associated with this provider.
Once completed, Linkwarden should be successfully configured to use authentik as its Single Sign-On SSO provider.