windows – 如何配置IIS Express以请求客户端证书
发布时间:2020-12-25 02:35:26 所属栏目:Windows 来源:网络整理
导读:有谁知道如何配置IIS Express以要求客户端证书进行访问? 我正在尝试调试使用客户端证书进行身份验证的有问题的ASP.NET应用程序. 使用IIS管理器工具并按照Microsoft文档 IIS Client Certificate Mapping Authentication iisClientCertificateMappingAuthenti
|
有谁知道如何配置IIS Express以要求客户端证书进行访问?
示例配置: <location path="Default Web Site">
<system.webServer>
<security>
<authentication>
<windowsAuthentication enabled="false" />
<anonymousAuthentication enabled="false" />
<digestAuthentication enabled="false" />
<basicAuthentication enabled="false" />
<iisClientCertificateMappingAuthentication enabled="true"
manyToOneCertificateMappingsEnabled="true">
<manyToOneMappings>
<add name="Contoso Employees"
enabled="true"
permissionMode="Allow"
userName="Username"
password="[enc:AesProvider:57686f6120447564652c2049495320526f636b73:enc]">
<rules>
<add certificateField="Subject"
certificateSubField="O"
matchCriteria="Contoso"
compareCaseSensitive="true" />
</rules>
</add>
</manyToOneMappings>
</iisClientCertificateMappingAuthentication>
</authentication>
<access sslFlags="Ssl,SslNegotiateCert" />
</security>
</system.webServer>
</location>
(编辑:好传媒网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
相关内容
- 微软Win10KB5011543 19044.1618 补丁包发布!
- win10电脑显存如何看
- win10正在识别无法连接到internet的解决方案
- 如何在安装之前检查 Linux 软件包的版本?
- 9012年,Linus终于意识到没什么人在用软盘了
- Windows Server 2012 Standard – Windows应用商店?
- 从微软Azure来看,Linux已经一统江湖?
- Windows Server 2012 R2 DataCenter列出指定服务器上可用功
- Windows 11 云母 效果将显现在更多应用上 微软
- windows-server-2012 – 如何在Windows Server 2012中使用W

