I got the following issue: A browser send a CORS request to a server - this server requires client SSL/TLS authentication (so both, server and client should exchange their certificates). The server is on the different domain than the page loaded to the client - so it requires a CORS request.
Issue 1: IE11 abort preflight requests with two way SSL/TLS certification
Resolution 1: Make the request 'local' and setup an apache proxy (with RewriteRule - but it did't pass the client's certificate and then with proxy pass - but it didn't pass the client's certificate as well).
Issue 2: The client's certificate is not pass with rewrite rules and with proxy pass.
The question: Is there ANY way to pass the client's certificate with an apache proxy? (Without changing the server's API at all).
PS: I've read many threads like this - Apache SSL Proxy can't find client certificate? but I didn't find any solution (and threads like this are old).