Skip to content
Merged

Dev #1021

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
17 changes: 15 additions & 2 deletions docs/getting-started/env-configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -1481,6 +1481,19 @@ Invalid regex patterns will cause password validation to fail, potentially preve

:::

#### `PASSWORD_VALIDATION_HINT`

- Type: `str`
- Default: `""` (empty string)
- Description: Custom hint message displayed to users when their password fails validation. This message appears in error dialogs during signup, password changes, and admin user creation when the password doesn't meet the requirements defined by `PASSWORD_VALIDATION_REGEX_PATTERN`. Use this to explain your specific password requirements in user-friendly terms.
- Example: `Password must be at least 12 characters with uppercase, lowercase, number, and special character.`

:::tip

When setting a custom `PASSWORD_VALIDATION_REGEX_PATTERN`, always set `PASSWORD_VALIDATION_HINT` to explain the requirements in plain language. Without a hint, users will only see a generic "Invalid password" error with no guidance on what's required.

:::

#### `WEBUI_SECRET_KEY`

- Type: `str`
Expand Down Expand Up @@ -5855,8 +5868,8 @@ When this variable is left empty (default), `REDIS_SOCKET_CONNECT_TIMEOUT` is au
#### `WEBSOCKET_SERVER_ENGINEIO_LOGGING`

- Type: `bool`
- Default: `false`
- Description: Controls logging for EngineIO server related to websocket operations.
- Default: Falls back to `WEBSOCKET_SERVER_LOGGING` if not set, otherwise `false`
- Description: Controls logging for Engine.IO server related to websocket operations. If not explicitly set, this inherits the value from `WEBSOCKET_SERVER_LOGGING`.

:::warning

Expand Down