我想在 Azure中托管IdentityServer4 ,并为特定路径配置了MTLS 。如何通过在“应用服务”中托管 IdentityServer4 asp.net 核心应用程序并使用某种负载平衡器设置 MTLS 来实现这一点:API 管理服务、应用程序网关、NGINX 等。我需要的是需要客户端证书特定路径并能够设置某种 CTL(证书信任列表)。换句话说,我想用 Windows-IIS 机器和 web.config 替换您完成的以下操作:
<configuration>
...
<location path="connect/mtls">
<system.webServer>
<security>
<access sslFlags="Ssl, SslNegotiateCert, SslRequireCert" />
</security>
</system.webServer>
</location>
...
</configuration>
任何人?