Forked from lfgrando/SetApiMaxContentLengthUpload.xml
Created
August 31, 2018 14:43
-
-
Save souzagustavo/62cae81d6b486b07a331c6ad866f1f66 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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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