如何做类似的事情在 applicationHost.config 中将 sslFlags 应用于“/”,但虚拟目录中没有任何内容?

如何做类似的事情在 applicationHost.config 中将 sslFlags 应用于“/”,但虚拟目录中没有任何内容?

在 IIS 10.0 服务器上托管https://example.com,我应该在 applicationHost.config 中放入什么内容才能使以下所有内容都成立:

<configuration>
   <location path="">
      <system.webServer>
         <defaultDocument enabled="true">
            <files>
               <add value="index.html" />
            </files>
         </defaultDocument>
         <security>
            <access sslFlags="Ssl, SslNegotiateCert, SslRequireCert, Ssl128">
         </security>
      </system.webServer>
   </location>
   <location path="index.html">
      <system.webServer>
         <security>
            <access sslFlags="Ssl, Ssl128">
         </security>
      </system.webServer>
   </location>
   <location path="/">
      <system.webServer>
         <security>
            <access sslFlags="Ssl, Ssl128">
         </security>
      </system.webServer>
   </location>
</configuration>

不起作用,因为<location path="/">不允许。

相关内容