Does someone know how to turn on client certificate hostname verification in Spring Cloud Gateway?
I know that Netty 4.* by default doesn't verify client certificate's hostname (https://github.com/netty/netty/issues/10362). I'm able to tweak configuration and enable the host verification.
However, created SSLEngine doesn't have peer hostname (value is always set to null), thus verification fails. Looks like reactor-netty's SSL Provider is always bootstrapped in a way to skip peer host.
Anyone lucky enough to have that working?