Open fedorukol opened 3 years ago
Hi, we are using django-redis-sessions in our project and it works fine but we want to secure redis-django connection.
Is this possible in some way?
Thanks.
This is supported. You need to use the URL though.
SESSION_REDIS = dict( url=f"rediss://:{REDIS_SESSION_PASSWORD}@{REDIS_SESSION_HOST}:{REDIS_SESSION_PORT}/{REDIS_SESSION_DB}" )
Hi, we are using django-redis-sessions in our project and it works fine but we want to secure redis-django connection.
Is this possible in some way?
Thanks.