You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently relayer connections only supports redis:// protocol communication with redis (unsecured connections). Data is transmitted without encryption, making it suitable for local development or trusted networks but vulnerable to interception in untrusted environments.
Feature
Support Redis encryption and connection to relayer service via TLS.
Create example that uses Redis encrypted connection in examples dir.
Create Security Recommendations docs page. Mention that using encrypted Redis is recomended for production systems.
Add note to all existing examples to point to Security Recommendations docs page.
Make sure your test runs with both self hosted of redis server (running locally, aws ecs etc ) and using managed service of redis ( eg. aws elasticache )
Describe the feature
Issue
redis://protocol communication with redis (unsecured connections). Data is transmitted without encryption, making it suitable for local development or trusted networks but vulnerable to interception in untrusted environments.Feature