blob: 47f4d2fb323957a35fdb02d0a4aaebaadcb682e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# See: https://docs.openwebui.com/getting-started/env-configuration
# Use the bundled frontend from the wheel and keep mutable data out of /usr.
# Ollama URL for the backend to connect.
OLLAMA_BASE_URL=http://localhost:11434
ENV=prod
OPENAI_API_BASE_URL=""
OPENAI_API_KEY=""
# Telemetry
SCARF_NO_ANALYTICS=true
DO_NOT_TRACK=true
ANONYMIZED_TELEMETRY=false
# Runtime state
DATA_DIR=/var/lib/open-webui
STATIC_DIR=/var/lib/open-webui/static
HF_HOME=/var/cache/open-webui/huggingface
# Uncomment only if you want to override the auto-generated key stored in
# /var/lib/open-webui/.webui_secret_key.
# WEBUI_SECRET_KEY=
|