You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Does anyone have ideas on how starttls could be possible to accomplish with this module?
Would likely need patches to nginx as well, but would be a nice feature that is currently missing
The text was updated successfully, but these errors were encountered:
I was able to accomplish this now by preread and proxy, but would be extremely nice if one could:
listen1234; # no ssl here
ssl_certificate_...
preread_by_lua_block {
local sock = assert(ngx.req.socket(true))
if sock:receive() == "STARTTLS" then
sock:sslhandshake(...)
end
}
Does anyone have ideas on how starttls could be possible to accomplish with this module?
Would likely need patches to nginx as well, but would be a nice feature that is currently missing
The text was updated successfully, but these errors were encountered: