I am trying to use spring-cloud-gateway for a spring-boot based service that uses ssl with client-auth.
The problem is, calling the service from a client over the api-gateway always fails with "certificate_unknown" (works fine without the gateway).
It seem that the spring-cloud-gateway not forwarding the client certificate to the backend-service.
Any ideas how to achieve this? Is this a missing feature?
thx
HttpClient
needs to be configured to send the certificates. You can create a bean and configure it. – Deguzman