Configuration changes for Secure Redis

To configure a secure redis do the following changes:

  1. Set the following config in the platform-service:

redis:
  connection: <redis-url>

The secure redis url should have the following format:

rediss://:<auth-password>@<host-ip>:<port>

  1. Set the following config in the gate service:

redis:
  connection: <redis-url>
  configuration:
    secure: true
  1. Restart the pods.

Last updated

Was this helpful?