Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/getting-started/env-configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5912,7 +5912,7 @@ More information about this setting can be found [here](https://docs.sqlalchemy.
#### `REDIS_URL`

- Type: `str`
- Description: Specifies the URL of the Redis instance or cluster host for storing application state.
- Description: Specifies the URL of the Redis instance, cluster host or sentinel for storing application state.
Copy link

Copilot AI Feb 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The wording here is a bit inaccurate/ambiguous: with Sentinel, REDIS_URL is still a Redis URL and the Sentinel nodes are provided via REDIS_SENTINEL_HOSTS (and the REDIS_URL hostname is treated as the Sentinel service name per the REDIS_SENTINEL_HOSTS docs below). Consider rephrasing to explicitly mention “Redis Cluster” and “Redis Sentinel”, capitalize “Sentinel”, and clarify that Sentinel uses REDIS_SENTINEL_HOSTS rather than implying the URL points directly at a Sentinel node.

Suggested change
- Description: Specifies the URL of the Redis instance, cluster host or sentinel for storing application state.
- Description: Specifies the Redis connection URL used by Open WebUI for storing application state. For standalone Redis or Redis Cluster, this should point to the Redis server/cluster (host, port, database, and optional TLS parameters). When using Redis Sentinel, `REDIS_URL` is still a Redis URL whose hostname is treated as the Sentinel *service name*; the actual Sentinel nodes are configured separately via `REDIS_SENTINEL_HOSTS`.

Copilot uses AI. Check for mistakes.
- Examples:
- `redis://localhost:6379/0`
- `rediss://:password@localhost:6379/0` *(with password and TLS)*
Expand Down
Loading