Windows Sunucuda React uygulamanız için Http to Https işlemi nasıl yapılır
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.web>
       <customErrors mode="Off" />
</system.web>
<system.webServer>
        <rewrite>
            <rules>
                <rule name="herhangibiretiket" stopProcessing="true">
                    <match url="(.*)" />
                    <conditions>
                        <add input="{HTTPS}" pattern="^OFF$" />
                    </conditions>
                    <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" />
                </rule>
					<rule name="ReactRouter Routes" stopProcessing="true">
        <match url=".*" />
        <conditions logicalGrouping="MatchAll">
          <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
          <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
          <add input="{REQUEST_URI}" pattern="^/(docs)" negate="true" />
        </conditions>
        <action type="Rewrite" url="index.html" />
      </rule>
            </rules>
        </rewrite>

</system.webServer>
</configuration>