Skip to main content

Integrate with Organizr

Support level: Community

What is Organizr?

Organizr allows you to setup "Tabs" that will be loaded all in one webpage.

-- https://organizr.app/

Organizr supports native OpenID Connect (OIDC) login and proxy authentication. OIDC does not require an outpost.

Preparation

The following placeholders are used in this guide:

  • organizr.company is the FQDN of the Organizr 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.

OIDC

authentik configuration

Redirect URI changes in authentik 2026.5

In authentik versions earlier than 2026.5, all Redirect URIs are automatically treated as Authorization type. If you are using one of these older authentik versions, add only the Authorization URL to your Redirect URIs and do not configure a Post Logout URI.

To support the integration of Organizr with authentik, create an application/provider pair in authentik.

  1. Log in to authentik as an administrator and open the authentik Admin interface.
  2. Navigate to Applications > Applications and click New Application to open the application wizard.
    • Application: provide a descriptive name, an optional group for the type of application, the policy engine mode, and optional UI settings. Note the Slug value because it is required later.
    • Choose a Provider Type: select OAuth2/OpenID Provider as the provider type.
    • Configure OAuth2 Provider: provide a name (or accept the auto-provided name), the authorization flow to use for this provider, and the following required configurations.
      • Note the Client ID and Client Secret values because they are required later.
      • Add a Redirect URI of type Strict Authorization with a value of https://organizr.company/api/v2/oidc/authentik/callback.
      • Select any available signing key.
    • Configure Bindings (optional): you can create a binding (policy, group, or user) to manage the listing and access to applications on a user's Application Dashboard page.
  3. Click Create Application to save the new application and provider.

Organizr configuration

  1. Log in to Organizr as an administrator.
  2. Navigate to Settings > System Settings > SSO > OIDC Global.
  3. Configure the following settings:
    • Enable OIDC Authentication: enable this setting.
    • Auto-Redirect to OIDC (optional): enable this setting to send users directly to authentik from the Organizr login page.
    • Auto-Redirect Provider: select Authentik if you enabled automatic redirects.
    • Default Group: select the Organizr group to assign to new OIDC users when no group mapping matches.
  4. Navigate to Settings > System Settings > SSO > OIDC: Authentik.
  5. Configure the following settings:
    • Enable Authentik: enable this setting.
    • Discovery URL: https://authentik.company/application/o/<application_slug>/.well-known/openid-configuration
    • Client ID: enter the Client ID from authentik.
    • Client Secret: enter the Client Secret from authentik.
    • Scopes: openid,profile,email
  6. Click Save to save your changes.
  7. Under OIDC: Authentik, click Test to verify that Organizr can retrieve the authentik OpenID Connect configuration.

Organizr matches existing accounts by username first, then by email if Link Existing Users is enabled. If no account matches, Auto-Create Users allows Organizr to create one. Ensure that matching usernames and email addresses belong to the same people in both systems.

If you are switching from proxy authentication, disable Auth Proxy under Settings > System Settings > Main > Auth Proxy and save your changes. Update your reverse proxy to route requests to Organizr without authentik proxy authentication before testing OIDC.

Configuration verification

Open Organizr in a private browser window and select Login with Authentik. If you enabled automatic redirects, Organizr sends you to authentik without showing the login page. After authentication, confirm that you return to Organizr signed in as the expected user.

Resources