<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <system.webServer>
    <rewrite>
      <rules>
        <rule name="Vue Routes" stopProcessing="true">
          <match url=".*" />
          <conditions logicalGrouping="MatchAll">
            <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
            <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
          </conditions>
          <action type="Rewrite" url="/" />
        </rule>
      </rules>
    </rewrite>
	<modules>
      <remove name="WebDAVModule" />
    </modules>
        <handlers>
		<remove name="WebDAV" />
            <remove name="php-8.2.30" />
            <add name="php-8.2.30" path="*.php" verb="GET,HEAD,POST,PUT,DELETE,PATCH,OPTIONS" modules="FastCgiModule" scriptProcessor="C:\php\php8.2.3\php-cgi.exe" resourceType="Unspecified" requireAccess="Script" />
        </handlers>
  </system.webServer>
</configuration>