Skip to content

Instantly share code, notes, and snippets.

@mikeplate
Created August 14, 2018 09:32
Show Gist options
  • Save mikeplate/3cfe2334820fdf005d8e8e4e33059a61 to your computer and use it in GitHub Desktop.
Save mikeplate/3cfe2334820fdf005d8e8e4e33059a61 to your computer and use it in GitHub Desktop.
ASP.NET and IIS 7+ configuration settings for upload limit
<!-- 50 MB limit -->
<system.web>
<httpRuntime maxRequestLength="51200" />
</system.web>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="52428800" />
</requestFiltering>
</security>
</system.webServer>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment