User-1928628111 posted
The docs say you can add the following to my web.config file, but httpsniff shows that my mp4 file is still being returned as application/octet-stream. Anyone know why the StaticFilehandler is not honoring my mimeMap confication?
<configuration>
<system.webServer>
<staticContent>
<mimeMap fileExtension=".mp4" mimeType="video/mp4"/>
</staticContent>
<handlers accessPolicy="Read, Write, Script, Execute">
<add name="mp4" path="*.mp4" verb="*" type="System.Web.StaticFileHandler" resourceType="Unspecified" preCondition="integratedMode" />
</handlers>
</system.webServer>
</configuration>