Static files in IIS
Mime type for WOFF fonts?
https://stackoverflow.com/questions/3594823/mime-type-for-woff-fonts/5142316
Manifest file extension (HAY)
https://stackoverflow.com/questions/6523034/html5-appcache-manifest-file-extension
https://github.com/h5bp/server-configs/issues/27
Static files in IIS
https://stackoverflow.com/questions/662535/setting-charset-for-static-files-in-iis
<configuration> <system.webServer> <staticContent> <mimeMap fileExtension=".rss" mimeType="text/xml; charset=utf-8"/> </staticContent>
https://stackoverflow.com/questions/9021946/add-mime-mapping-in-web-config-for-iis-express
<system.webServer> ... <staticContent> <remove fileExtension=".woff" /> <mimeMap fileExtension=".woff" mimeType="application/font-woff" /> </staticContent> </system.webServer>
Config ASP.NET Web API 2.2 in IIS 7 with .NET Framework 4.5
http://stevemichelotti.com/resolve-404-in-iis-express-for-put-and-delete-verbs/
https://www.hanselman.com/blog/NETVersioningAndMultiTargetingNET45IsAnInplaceUpgradeToNET40.aspx
https://weblog.west-wind.com/posts/2012/Mar/13/NET-45-is-an-inplace-replacement-for-NET-40