2026-03-09 21:42:17 +08:00
|
|
|
# OpenWebUI Bulk Installer Configuration
|
|
|
|
|
#
|
|
|
|
|
# Instructions:
|
|
|
|
|
# - api_key: Copy from OpenWebUI Settings (starts with sk-)
|
2026-03-09 22:01:25 +08:00
|
|
|
# - url: OpenWebUI server address (supports localhost, IP, and domain)
|
|
|
|
|
#
|
|
|
|
|
# URL Examples:
|
|
|
|
|
# - Local: http://localhost:3000
|
|
|
|
|
# - Remote IP: http://192.168.1.10:3000
|
|
|
|
|
# - Domain: https://openwebui.example.com
|
2026-03-09 21:42:17 +08:00
|
|
|
#
|
|
|
|
|
# Environment variable precedence (highest to lowest):
|
|
|
|
|
# 1. OPENWEBUI_API_KEY / OPENWEBUI_URL environment variables
|
|
|
|
|
# 2. OPENWEBUI_BASE_URL environment variable
|
|
|
|
|
# 3. Configuration in this .env file
|
|
|
|
|
|
|
|
|
|
# API Key (required)
|
|
|
|
|
api_key=sk-your-api-key-here
|
|
|
|
|
|
|
|
|
|
# OpenWebUI server address (required)
|
2026-03-09 22:01:25 +08:00
|
|
|
# Configure the baseURL where your OpenWebUI instance is running
|
2026-03-09 21:42:17 +08:00
|
|
|
url=http://localhost:3000
|
|
|
|
|
|
|
|
|
|
# Alternatively, use environment variable format (both methods are equivalent)
|
|
|
|
|
# OPENWEBUI_API_KEY=sk-your-api-key-here
|
|
|
|
|
# OPENWEBUI_BASE_URL=http://localhost:3000
|