Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions docs/AUTHENTICATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,18 @@ Provider-specific variables are listed in [CONFIGURATION](CONFIGURATION.md).

## OIDC callback

For generic OIDC providers, configure the callback URL as:
For generic OIDC providers, the callback URL uses the lowercased value of the
`OIDC_NAME` env var as the provider segment of the path:

```
https://<your-domain>/api/auth/callback/oidc
https://<your-domain>/api/auth/callback/<provider-name>
```

`<provider-name>` defaults to `oidc` when `OIDC_NAME` is not set. For example,
with `OIDC_NAME=tinyauth` the callback URL is:

```
https://<your-domain>/api/auth/callback/tinyauth
```

## Provider setup notes
Expand Down
Loading