I have to deploy my ASP.NET application into two seperated IIS servers. My application works over HTTPS/TLS. My ASP code has to handle client SSL certificate and it means I can't use simple forward load balancers, because I will never get such certificate from nginx or Apache Load Balancer.
As I understand there is no common (open-source or free) solution for load balancing in Microsoft world and especially for SSL.
I heard about simple DNS balancing, where my domain name would be bound to several ISS servers, and every new client (session) would get IP of one server,and such way I would get simple balancing and SSL support.
Now, I am just at the begging of deployment and it is really interesting to know your opinion of such balancing, or may be to get some recommendations.
Thanks!