Some checks failed
Create and publish Docker images with specific build args / build-main-image (linux/amd64, ubuntu-latest) (push) Has been cancelled
Create and publish Docker images with specific build args / build-main-image (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Create and publish Docker images with specific build args / build-cuda-image (linux/amd64, ubuntu-latest) (push) Has been cancelled
Create and publish Docker images with specific build args / build-cuda-image (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Create and publish Docker images with specific build args / build-cuda126-image (linux/amd64, ubuntu-latest) (push) Has been cancelled
Create and publish Docker images with specific build args / build-cuda126-image (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Create and publish Docker images with specific build args / build-ollama-image (linux/amd64, ubuntu-latest) (push) Has been cancelled
Create and publish Docker images with specific build args / build-ollama-image (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Create and publish Docker images with specific build args / build-slim-image (linux/amd64, ubuntu-latest) (push) Has been cancelled
Create and publish Docker images with specific build args / build-slim-image (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Create and publish Docker images with specific build args / merge-main-images (push) Has been cancelled
Create and publish Docker images with specific build args / merge-cuda-images (push) Has been cancelled
Create and publish Docker images with specific build args / merge-cuda126-images (push) Has been cancelled
Create and publish Docker images with specific build args / merge-ollama-images (push) Has been cancelled
Create and publish Docker images with specific build args / merge-slim-images (push) Has been cancelled
Python CI / Format Backend (3.11.x) (push) Has been cancelled
Python CI / Format Backend (3.12.x) (push) Has been cancelled
Frontend Build / Format & Build Frontend (push) Has been cancelled
Frontend Build / Frontend Unit Tests (push) Has been cancelled
Close inactive issues / close-issues (push) Has been cancelled
34 lines
1.1 KiB
Markdown
34 lines
1.1 KiB
Markdown
## 自定义品牌配置
|
||
|
||
> [!WARNING]
|
||
> 本项目是开源分发版本,与 Open WebUI 官方无直接关联
|
||
> 我们鼓励大家支持开源项目,保留 Open WebUI 的标识
|
||
> 如您通过下述方式移除 Open WebUI 标识,请确保满足 [Open WebUI License 条款9](https://docs.openwebui.com/license#9-what-about-forks-can-i-start-one-and-remove-all-open-webui-mentions) 相关条件
|
||
> 未经授权的大规模或商用修改属于违规,由使用者本人承担全部法律风险
|
||
> 以下内容仅供小规模、实验或已授权用户使用
|
||
|
||
您可以通过设置以下环境变量来自定义系统的名称和 Logo
|
||
|
||
```bash
|
||
# 配置为任意非空值即可
|
||
LICENSE_KEY: "enterprise"
|
||
|
||
# 组织名称,填写你喜欢的名称
|
||
ORGANIZATION_NAME: "XXX"
|
||
|
||
# 网站名称
|
||
CUSTOM_NAME: "XXX"
|
||
|
||
# 网站 Logo,ICO 格式
|
||
CUSTOM_ICO: "https://example.com/favicon.ico"
|
||
|
||
# 网站 Logo,PNG 格式
|
||
CUSTOM_PNG: "https://example.com/favicon.png"
|
||
|
||
# 网站深色模式 LOGO,PNG 格式
|
||
CUSTOM_DARK_PNG: "https://example.com/favicon.png"
|
||
|
||
# 网站 Logo,SVG 格式
|
||
CUSTOM_SVG: "https://example.com/favicon.svg"
|
||
```
|