-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Enable TLS connection for Redis #2334
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
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: Adam Vest <ziris85@live.com>
Hello, I was here to add this feature, but you've done it. Seems not complicated if cert,key and ca are given with base64 string. |
I will probably add support for mTLS with Mariadb to ... |
Needs documentation in REDME |
Signed-off-by: Ziris85 <ziris85@live.com>
Good point @J0WI , thanks! Just updated README for that. |
This merge is of public interest. Why hasn't it been accepted yet? |
Is this waiting on me for anything? I'll be happy to fix/update whatever else is necessary to get this finished 🙂 |
It needs rebase. Please only commit the |
Hello!
This is a hopefully simple PR to allow users to configure Redis to connect to a TLS-enabled Redis endpoint. It proposes a new environment variable
REDIS_PROTOCOL
that can be passed to the container, and replaces all areas (that I found) wheretcp://
was either hard-coded or the assumed (omitted) default. All adjustments will continue to usetcp
as the default if the env var isn't passed, so this shouldn't impact existing installations.I don't do PR's very frequently so apologies if I missed something here, but I'm interested in thoughts/feedback!
Thank you!