You can define the type (MIME) in the web.config file.
Example for accept .json to be handlet like .txt file.
<configuration>
........................
<system.webServer>
.......................
<staticContent>
<mimeMap fileExtension=".json"
mimeType="application/json" />
</staticContent>
........................
</system.webServer>
........................
</configuration>
Thank Vigan S for the input.