nic-6443 commented on code in PR #12986:
URL: https://github.com/apache/apisix/pull/12986#discussion_r2780792182
##########
apisix/plugins/openid-connect.lua:
##########
@@ -84,6 +84,58 @@ local schema = {
description = "it holds the cookie lifetime in
seconds in the future",
}
}
+ },
+ storage = {
+ type = "string",
+ enum = {"cookie", "redis"},
+ default = "cookie",
+ },
+ redis = {
+ type = "object",
+ properties = {
+ host = {
+ type = "string", minLength = 2, default =
"127.0.0.1"
+ },
+ port = {
+ type = "integer", minimum = 1, default = 6379,
+ },
+ socket = {
+ type = "string"
+ },
Review Comment:
Does this configuration mean connecting to redis via a linux domain socket?
If so, I think it can be removed because it won't be used in actual situations.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]