> ## 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.

# Redis

## 在 Helm Chart 值中找到 Redis 配置

### 显示 Helm Chart 值

```bash theme={null}
helm show values dify/dify
```

以下是 Helm chart 值中 Redis 配置的示例代码。

```yaml theme={null}
externalRedis:
  enabled: true
  host: "redis.example"
  port: 6379
  username: ""
  password: "#REPLACE_ME#"
  useSSL: false
```

## Redis SSL 配置

* 要启用 Redis 的 SSL 功能，请将 `useSSL` 字段设置为 `true`。
* 非 SSL 连接的 `port` 字段应设置为 `6379`，SSL 连接的 `port` 字段应设置为 `6380`。
