web.config 387 B

12345678910
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <configuration>
  3. <system.webServer>
  4. <!-- this configuration overrides the FastCGI handler to let IIS serve the static files -->
  5. <handlers>
  6. <clear/>
  7. <add name="StaticFile" path="*" verb="*" modules="StaticFileModule" resourceType="File" requireAccess="Read" />
  8. </handlers>
  9. </system.webServer>
  10. </configuration>