Skip to content

OpenID Connect With Authelia

Mark edited this page Feb 8, 2026 · 1 revision

OpenID Connect with Authelia

Setting up OIDC login with Authelia

Fundamentally it should be similar to how Authentik is setup. This page just shows an example config you can use.

There's a relevant Authelia Github Issue for a little more information.

Configuration

Use the following config:

client_id: 'clientID' 
client_name: 'AudioBookRequest'
client_secret: '[secret]'
public: false
authorization_policy: 'one_factor'
require_pkce: 'false'
redirect_uris:
  - 'https://abr.example.com/auth/oidc'
scopes:
  - 'openid'
  - 'profile'
  - 'groups'
  - 'email'
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'

Important Settings

  • redirect_uris needs to end with /auth/oidc
  • token_endpoint_auth_method needs to be client_secret_post (not ending in ...basic)

Example ABR Configuration

Here's an example configuration on ABR in the Security settings:

Authelia ABR

Clone this wiki locally