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

## Find the Redis Configuration in the Helm Chart Values

### Display Helm Chart Values

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

This is an example of the Redis configuration in the Helm chart values.

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

## Redis SSL Configuration

* To enable Redis with SSL, set the `useSSL` field to `true`.
* The `port` field should be set to `6379` for non-SSL connections and `6380` for SSL connections.
