-
Notifications
You must be signed in to change notification settings - Fork 223
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TLS support #188
Comments
I was just coming to ask this. Heroku is changing its Redis add-on and now recommends using their TLS connection. They also specifically point Django users to use CACHES = {
"default": {
"BACKEND": "redis_cache.RedisCache",
"LOCATION": os.environ.get("REDIS_TLS_URL"),
"OPTIONS": {"CONNECTION_POOL_KWARGS": {"ssl_cert_reqs": None}},
}
} Am I doing something wrong? |
I'm now wondering if Heroku just got confused between django-redis and django-redis-cache, as the former seems to work OK for me with TLS. |
After opening a ticket with Heroku and suggesting they might have got confused, they've rewritten that bit of their docs to specify using django-redis instead of django-redis-cache. Sorry that none of this answers your question @avrahamkam , although I'm guessing this doesn't support TLS. |
Bumping. Does this library support TLS connections? |
I managed to enable SSL with |
Is TLS supported? I don't see any documentation for how to configure it.
If I understand correctly,
redis-py
supports TLS (redis/redis-py#446).The text was updated successfully, but these errors were encountered: