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

2. Set the following config in the gate service:

```
redis:
  connection: <redis-url>
  configuration:
    secure: true
```

3. Restart the pods.
