> ## Documentation Index
> Fetch the complete documentation index at: https://enterprise-docs.dify.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Dify 系统 Logo

## 要求

* favicon.ico
  * 高度：48px
  * 宽度：48px
* logo-site.png
  * 高度：40px
  * 宽度：任意

## 配置

### 将图片转换为 Base64 编码

你可以使用以下命令将图片编码为 base64。

```bash theme={null}
base64 -i favicon.ico -o favicon.ico.txt
base64 -i logo-site.png -o logo-site.png.txt
```

#### 更新 Helm 值

从生成的文件中复制 base64 编码的字符串，并替换以下值中的 `#REPLACE_ME#`。

```yaml theme={null}
web:
  logoConfig:
    enabled: true
    # image:
    #   repository: g-hsod9681-docker.pkg.coding.net/dify-artifact/dify/busybox
    #   tag: "1.36.1"
    faviconIcoBase64: |
      #REPLACE_ME#
    logoSitePngBase64: |
      #REPLACE_ME#
```
