Skip to content

Instantly share code, notes, and snippets.

@lfgrando
Last active August 31, 2018 14:57
Show Gist options
  • Save lfgrando/c3048b9bdf9375476fcafb346a5140ed to your computer and use it in GitHub Desktop.
Save lfgrando/c3048b9bdf9375476fcafb346a5140ed to your computer and use it in GitHub Desktop.
API Upload Limit Size to 1gb at Web.config. It seems it doesn't work at all IIS's. Looks like not working at IIS Express.
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1073741824" />
</requestFiltering>
</security>
</system.webServer>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment