I'm trying to secure my Azure Web Application by adding a .pfx certificate.
In Azure portal I've added my pfx file:
App Service -> TLS/SSL settings -> Private Key Certificates (.pfx) -> Upload Certificate
Then under the settings blade :
Configuration -> General Settings -> Incoming client certificates -> Client certificate mode we have 3 options : Require, Allow and Ignore.
- If I select
IgnoreI can navigate to my website wherever I have the certificate installed on my computer or not. - If I select
RequireI can navigate to my website only If I've the certificate installed on my computer. - If I select
Allowthis act like theIgnoreoption: I can navigate to my website wherever I have the certificate installed on my computer or not.
So what is the purpose of the Allow option?
I didn't find any litterature about it.
