Authentication for Wappler Redis

The Current Redis setup allows unauthenticated connections,
Would it be possible to allow password authentication for Redis,
Authentication support to Redis which is currently used for session management would allow for maintaining better security and control of session data plus the other use-case we would be using it for.

It would give you a better hand in overall application security and help meet regulatory and compliance requirements.

You can just add user name and password in the Redis url in the server connect settings. Like:

redis://user:password@domain.com/

If you only have password and no username don’t forget to prefix it with :

2 Likes

Thanks @George