Add history recording storage support

This commit is contained in:
Alexandre
2025-12-18 21:34:38 +01:00
parent 37bc46d5be
commit 0b3f4b7b38
4 changed files with 34 additions and 3 deletions

View File

@@ -45,13 +45,15 @@ The default username is `guacadmin` with password `guacadmin`. It is strongly re
| Option | Type | Default | Description |
|--------|------|---------|-------------|
| `EXTENSIONS` | str | `auth-totp` | Guacamole extensions to enable (e.g., `auth-totp`) |
| `EXTENSIONS` | str | `auth-totp` | Guacamole extensions to enable (e.g., `auth-totp`, `history-recording-storage`) |
| `recording_search_path` | str | `/config/recordings` | Directory added to `guacamole.properties` as the `recording-search-path` used by the history recording storage extension |
| `TZ` | str | | Timezone (e.g., `Europe/London`) |
### Example Configuration
```yaml
EXTENSIONS: "auth-totp"
EXTENSIONS: "auth-totp,history-recording-storage"
recording_search_path: "/config/recordings"
TZ: "Europe/London"
```