mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-08-04 06:52:47 +00:00
🪪 fix: Add Admin Panel SSO URL Config (#13220)
* fix: Add admin panel URL Helm configuration * fix: Clarify admin panel URL configuration * fix: Avoid duplicate admin panel URL env
This commit is contained in:
parent
799a080479
commit
830d124e4d
5 changed files with 49 additions and 5 deletions
|
|
@ -33,6 +33,12 @@ MONGO_AUTO_CREATE=
|
|||
DOMAIN_CLIENT=http://localhost:3080
|
||||
DOMAIN_SERVER=http://localhost:3080
|
||||
|
||||
# External admin panel base URL used for admin OAuth/SSO redirects.
|
||||
# Required when the admin panel is hosted separately from LibreChat.
|
||||
# May include a path. Do not include a trailing slash.
|
||||
# Example: https://admin.example.com/admin
|
||||
ADMIN_PANEL_URL=
|
||||
|
||||
NO_INDEX=true
|
||||
# Use the address that is at most n number of hops away from the Express application.
|
||||
# req.socket.remoteAddress is the first hop, and the rest are looked for in the X-Forwarded-For header from right to left.
|
||||
|
|
@ -535,6 +541,8 @@ OPENID_ISSUER=
|
|||
OPENID_SESSION_SECRET=
|
||||
OPENID_SCOPE="openid profile email"
|
||||
OPENID_CALLBACK_URL=/oauth/openid/callback
|
||||
# Admin panel SSO uses ${DOMAIN_SERVER}/api/admin/oauth/openid/callback as the
|
||||
# OpenID provider redirect URI.
|
||||
OPENID_REQUIRED_ROLE=
|
||||
OPENID_REQUIRED_ROLE_TOKEN_KIND=
|
||||
OPENID_REQUIRED_ROLE_PARAMETER_PATH=
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue