yuweizzz commented on code in PR #11351:
URL: https://github.com/apache/apisix/pull/11351#discussion_r1665000812
##########
apisix/plugins/ocsp-stapling.lua:
##########
@@ -199,6 +265,19 @@ function _M.init()
type = "boolean",
default = false,
},
+ ssl_stapling_responder = {
+ type = "string",
+ pattern = [[^http://]],
+ },
+ ssl_ocsp = {
+ type = "string",
+ default = "off",
+ enum = {"off", "leaf"},
+ },
+ ssl_ocsp_responder = {
Review Comment:
yes, but no all same as nginx directives, just part of it, nginx directives
allows "off", "leaf" and "on". the openresty api can not get full chain cert,
so we don't support "on" here.
--
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]