Here I give an example:(that's my goal) https://server.cryptomix.com/secure/
I create a test project (MVC WEB APP). I made it called from IIS on HTTPS. I created Self-Signed Certificate. SSL Settings
When I open the page never ask me for certificate auth. How to make it like in my example and process selected certificate?
CodePudding user response:
Client-certificate authentication can be optional or mandatory, or not used at all.
- Ignore is when it's not used at all.
- Accept will take a certificate if it's presented, but will also continue with connections where the client doesn't present one.
- Require only continues with connections that have a client certificate.