Skip to content

Commit

Permalink
Merge pull request #14 from jalibu/patch-1
Browse files Browse the repository at this point in the history
Update OIDC.md
  • Loading branch information
meltyshev authored Apr 15, 2024
2 parents c09d5ef + 9608957 commit 2a63e5e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions docs/Configuration/OIDC.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,19 @@ OIDC_CLIENT_ID=xxx-xxx.apps.googleusercontent.com
OIDC_CLIENT_SECRET=xxxx-xxxx-xx
OIDC_SCOPES=openid profile email
```

### Synology SSO

* Folllow the [Synology SSO Server Tutorial](https://kb.synology.com/de-de/DSM/tutorial/set_up_oidc_for_dsm_in_sso_server) and create a new OIDC application.
* Use `https://my-planka.url/oidc-callback` as Redirect URI
* Set the following environment variables into your config

```
OIDC_ISSUER=https://sso.mysynology.me/webman/sso
OIDC_CLIENT_ID=xxx
OIDC_CLIENT_SECRET=xxx
OIDC_NAME_ATTRIBUTE=email # This is important because Synology does not support profile scope
OIDC_SCOPES=openid email
OIDC_IGNORE_USERNAME=true
OIDC_IGNORE_ROLES=true
```

0 comments on commit 2a63e5e

Please sign in to comment.