You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -70,7 +70,7 @@ rtabby-web-api store tabby's configuration in a database. You can choose between
70
70
```
71
71
Token must be a valid and unique uuid v4. You can create one [here](https://www.uuidgenerator.net/version4).
72
72
73
-
rTabby supports OAuth2 providers like Github, Gitlab, Googleor Microsoft. You can enable them by adding OAuth client and secret through env var in your `docker-compose.yml`.
73
+
rTabby supports OAuth2 providers like Github, Gitlab, Google, Microsoft or OpenID Connect (OIDC). You can enable them by adding OAuth client and secret through env var in your `docker-compose.yml`. For OIDC, you'll also need to provide your configuration url (ends with `/.well-known/openid-configuration`).
74
74
OAuth login callback is `/login/{provider}/callback`.
75
75
76
76
```yml
@@ -84,6 +84,9 @@ rtabby-web-api store tabby's configuration in a database. You can choose between
84
84
#- GOOGLE_APP_CLIENT_SECRET=
85
85
#- MICROSOFT_APP_CLIENT_ID=
86
86
#- MICROSOFT_APP_CLIENT_SECRET=
87
+
#- OIDC_APP_CLIENT_ID=
88
+
#- OIDC_APP_CLIENT_SECRET=
89
+
#- OIDC_APP_CONFIG_URL=
87
90
```
88
91
89
92
When using OAuth prividers, browse to `http://<rtabby instance>/login` to authenticate and create your user and token.
0 commit comments