Find the Redis Configuration in the Helm Chart Values

Display Helm Chart Values

helm show values dify/dify

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

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.