-
Notifications
You must be signed in to change notification settings - Fork 181
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
Using rediss (ssl wrapped redis) as storage_adapter #191
Comments
resty.redis have |
As far as I can see, making the following change would allow you to pass additional options to |
@gjongenelen Manually I did solution like this already, but it's "one-time-solutions", and next version may be incompatible with this changes. |
In the new v0.13.0 release of lua-resty-auto-ssl, there's now support for passing auto_ssl:set("redis", {
host = "10.10.10.1",
connect_options = {
ssl = true,
ssl_verify = true,
},
}) However, note that these SSL options only recently landed in lua-resty-redis's master (openresty/lua-resty-redis#168), so these SSL specific options are not currently part of an official lua-resty-redis or OpenResty release. It should be part of lua-resty-redis's next release, but in the meantime, you'd need to install that module from master if you're looking to take advantage of this. |
Any solution (excluding stunnel-like) for using
rediss
protocol (redis over ssl)?The text was updated successfully, but these errors were encountered: