I have sucessfully installed kong gateway for an API which load balance via upstream to multiple targets (application servers).
Now, I have a self-signed certificate for my application servers, the ssl handshake should fail between kong and the targets. I deduced that kong does not verify upstream certificate.
After some researches, I have found ssl_proxy on;
configuration for nginx that would do it right.
I would like to find an equivalent of that in openresty in order to verify upstreams ssl certificate.
The solution could be to modify kong nginx configuration to activate ssl_proxy
but crappy with different targets on the same instance.