-
-
Notifications
You must be signed in to change notification settings - Fork 197
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
[Feature Request]: Redis SSL connection via redis.ParseURL #815
Comments
@iwpnd I just looked at the redis config and it does appear to support a |
Hey, SSL is currently not supported. There are several ways to enable it. ParseURL is just one of them. Another would be as add a TLSConfig to redis.Options upon receiving something like |
@iwpnd I would say we start with enhancing the current implementation by supporting an |
Happy to do it. :) |
closed via bdce754. Thanks for the contribution! |
Hi 👋
Tegola does not yet support redis SSL connections and I'd like to change that, or request this feature.
e.g.:
redis://:password@host
For this to work I'd like to add another option to
[cache]
calleduri
orurl
. If this option is set, I'd change this to useParseURL
to createredis.Options
instead of creating the config manually.ParseURL attaches the TLSConfig to the
redis.Options
ifrediss://
is part of the connection url. That way both options stay viable and tegola is a feature richer. 😁What do you think?
The text was updated successfully, but these errors were encountered: