2026-04-11 20:58:34 +02:00
# Configuration
OxiCloud is configured entirely via **environment variables** (no config files needed).
## Sections
- [Deployment & Docker ](/config/deployment ) — Docker Compose, Kubernetes Helm chart, image details
- [Environment Variables ](/config/env ) — complete reference of all `OXICLOUD_*` variables
2026-06-09 11:11:50 +02:00
- [Storage Fine Tuning ](/config/storage-fine-tuning ) — sizing the upload caps + spool directories; tmpfs vs real disk; NVMe split layouts
2026-08-29 10:23:02 +02:00
- [Thumbnail Migration ](/config/thumbnail-migration ) — upgrading past `.thumbnails/` : what runs on first boot, taking a snapshot first, verifying afterwards
2026-04-22 07:50:41 +02:00
- [Authentication ](/config/authentication ) — JWT auth, login, refresh, password changes, and auth status
2026-04-11 20:58:34 +02:00
- [OIDC / SSO ](/config/oidc ) — single sign-on with Keycloak, Authentik, Authelia, Google, Azure AD
- [WOPI (Office Editing) ](/config/wopi ) — Collabora Online / OnlyOffice integration
## Minimal `.env`
```bash
OXICLOUD_DB_CONNECTION_STRING = postgres://postgres:postgres@postgres:5432/oxicloud
OXICLOUD_STORAGE_PATH = /app/storage
OXICLOUD_SERVER_HOST = 0.0.0.0
OXICLOUD_SERVER_PORT = 8086
```
That's enough to get started. All other settings have sensible defaults.