Fix filesize.

This commit is contained in:
Michael 2017-04-06 16:15:33 -04:00
parent 946fc67bb9
commit 914b34b118

View file

@ -21,12 +21,18 @@
<customErrors mode="Off" />
<authentication mode="None" />
<compilation debug="true" targetFramework="4.5.2" />
<httpRuntime targetFramework="4.5.2" />
<httpRuntime maxRequestLength="51200" targetFramework="4.5.2" />
<httpModules>
<add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" />
</httpModules>
</system.web>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="52428800" />
<!--50MB-->
</requestFiltering>
</security>
<modules>
<remove name="FormsAuthentication" />
<remove name="ApplicationInsightsWebTracking" />