Files
authentik/website/integrations/miscellaneous/wallos/index.mdx
Tana M Berry ff611c845f website/integrations: fix all links to Bindings docs (#20214)
fix link to Bindings docs

Signed-off-by: Tana M Berry <tanamarieberry@yahoo.com>
2026-02-16 08:06:26 -06:00

67 lines
3.3 KiB
Plaintext

---
title: Integrate with Wallos
sidebar_label: Wallos
support_level: community
---
## What is Wallos
> Wallos is a self-hosted subscription and budget planning application.
>
> -- https://wallosapp.com/
## Preparation
The following placeholders are used in this guide:
- `https://wallos.company` is the FQDN of the Wallos installation.
- `https://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.
:::
## authentik configuration
To support the integration of Wallos with authentik, you need to create an application/provider pair in authentik.
### Create an application and provider in authentik
1. Log in to authentik as an administrator and open the authentik Admin interface.
2. Navigate to **Applications** > **Applications** and click **Create with Provider** to create an application and provider pair in authentik. (Alternatively you can first create a provider separately, then create the application and connect it with the provider.)
- **Application**: provide a descriptive name, an optional group for the type of application, the policy engine mode, and optional UI settings.
- **Choose a Provider type**: select **OAuth2/OpenID Connect** as the provider type.
- **Configure the 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 will be required later.
- Set a `Strict` redirect URI to `https://wallos.company/index.php`.
- Select any available signing key.
- **Configure Bindings** (optional): you can create a [binding](/docs/add-secure-apps/bindings-overview/) (policy, group, or user) to manage the listing and access to applications on a user's **My applications** page.
3. Click **Submit** to save the new application and provider.
## Wallos configuration
To support the integration of authentik with Wallos, you need to enable and configure OIDC authentication in Wallos.
1. Log in to your Wallos installation as an administrator and open the Admin Panel.
2. Scroll to the **OIDC settings** section and enable OIDC/OAuth.
3. Configure the following settings:
- **Provider Name**: `authentik`
- **Client ID**: Enter the Client ID from authentik
- **Client Secret**: Enter the Client Secret from authentik
- **Authorization URL**: `https://authentik.company/application/o/authorize/`
- **Token URL**: `https://authentik.company/application/o/token/`
- **User Info URL**: `https://authentik.company/application/o/userinfo/`
- **Redirect URL**: `https://wallos.company/index.php`
- **User Identifier Field**: `sub`
- **Scopes**: `openid email profile`
## Configuration verification
To confirm that authentik is correctly integrated with Wallos, log out and attempt to log back in using OIDC/OAuth. You should be redirected to authentik, and after successful authentication, back to Wallos.
## Resources
- [Wallos website](https://wallosapp.com/)
- [Wallos GitHub repository](https://github.com/ellite/wallos)