Skip to content

Commit

Permalink
keep authelia example configuration prior to v4.38
Browse files Browse the repository at this point in the history
  • Loading branch information
hendrik1120 authored Mar 14, 2024
1 parent 4c891d8 commit 63ec46d
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion providers.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ FolderRoleMapping: []
Authelia is simple to configure, and RBAC is straightforward.
### Authelia's Config
Below is the `identity_providers` section of an Authelia config:

### Authelia v4.38 and above
```yaml
identity_providers:
oidc:
Expand All @@ -57,6 +57,21 @@ identity_providers:
- https://jellyfin.example.com/sso/OID/redirect/authelia
```

### Authelia v4.37 and below
```yaml
identity_providers:
oidc:
# hmac secret and private key given by env variables
clients:
- id: jellyfin
description: My media server
# Client secret should be randomly generated
secret: <redacted>
authorization_policy: one_factor
redirect_uris:
- https://jellyfin.example.com/sso/OID/redirect/authelia
```

### Jellyfin's Config

On Jellyfin's end, we need to configure an Authelia provider as follows:
Expand Down

0 comments on commit 63ec46d

Please sign in to comment.