I am fairly new to IIS. We have a requirement to setup a reverse proxy using IIS. Now the origin / backend server can be on HTTP or HTTPS.
We have successfully configured mutual authentication on IIS for the client to require SSL and present a client certificate.
What we now need is to enable mutual authentication between the IIS reverse proxy and the origin server. Something like below:
---------- --------------------- ----------
| Client | --- HTTPS ---> | IIS Reverse Proxy | --- HTTPS ---> | Origin |
---------- --------------------- ----------
This setup requirement is similar to this question except that the question uses Apache HTTPD. Is this setup possible with IIS?
Any reference link / documentation would be appreciated.