mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-08 12:58:11 -05:00
[GH-ISSUE #15499] issue: No sign out redirect with OAuth #33110
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @zomnium on GitHub (Jul 3, 2025).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/15499
Check Existing Issues
Installation Method
Git Clone
Open WebUI Version
v0.6.15
Ollama Version (if applicable)
No response
Operating System
macOS 15.5
Browser (if applicable)
No response
Confirmation
README.md.Expected Behavior
I expect that
WEBUI_AUTH_SIGNOUT_REDIRECT_URLwill be used to redirect the user after signing out, also when havingENABLE_OAUTH_SIGNUPset totruefor using OAuth/OIDC.Actual Behavior
ENABLE_OAUTH_SIGNUPistrueit will get priority overWEBUI_AUTH_SIGNOUT_REDIRECT_URL.end_session_endpointcall will get aid_token_hintparameter, but lacks thepost_logout_redirect_uriparameter.Steps to Reproduce
ENABLE_OAUTH_SIGNUPto true andWEBUI_AUTH_SIGNOUT_REDIRECT_URLto a path you want to open after signing out.Logs & Screenshots
Relevant
.envconfig:Additional Information
I'm working on a PR to fix this. Having a condition in the
ENABLE_OAUTH_SIGNUPstatement checking forWEBUI_AUTH_SIGNOUT_REDIRECT_URL.When available it will add this URL in the
post_logout_redirect_uriparameter in theend_session_endpointcall.