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
When the console is running separately and is not embedded in the same binary as the server, the OIDC SSO login configuration is not set from the server.
3
+
4
+
It needs to be configured using Environment Variables like this:
export CONSOLE_IDP_DISPLAY_NAME="Login with OIDC";
13
+
14
+
./console server
15
+
```
16
+
> [!IMPORTANT]
17
+
> Currently, the following environment variables are mandatory: `CONSOLE_IDP_URL`, `CONSOLE_IDP_CLIENT_ID`, `CONSOLE_IDP_SECRET` and `CONSOLE_IDP_CALLBACK`.
18
+
19
+
For convenience, the same environment variables are supported as for the server, with the `CONSOLE_` ones taking precedence over the `MINIO_` ones.
20
+
This means you can use the same variables as you would set on the server and share them with the console.
21
+
22
+
| Console Environment Variables | MinIO Server Environment Variables | Required | Example |
23
+
| -- | -- | -- | -- |
24
+
CONSOLE_IDP_DISPLAY_NAME | MINIO_IDENTITY_OPENID_DISPLAY_NAME | | "Login with OIDC"
0 commit comments