Skip to content

Instantly share code, notes, and snippets.

@pedroinfo
Last active September 10, 2025 19:26
Show Gist options
  • Select an option

  • Save pedroinfo/f582a52134ca57b806be36ddd6739d0f to your computer and use it in GitHub Desktop.

Select an option

Save pedroinfo/f582a52134ca57b806be36ddd6739d0f to your computer and use it in GitHub Desktop.
"1073741824" <!-- 1 GB -->
<system.web>
<httpRuntime maxRequestLength="2097151" executionTimeout="600" />
</system.web>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="2147483648" />
</requestFiltering>
</security>
</system.webServer>
<basicHttpBinding>
<binding name="LargeFileBinding"
maxReceivedMessageSize="2147483647"
maxBufferSize="2147483647"
sendTimeout="00:10:00"
receiveTimeout="00:10:00"
transferMode="Buffered">
<readerQuotas maxDepth="2147483647"
maxStringContentLength="2147483647"
maxArrayLength="2147483647"
maxBytesPerRead="2147483647"
maxNameTableCharCount="2147483647"/>
</binding>
</basicHttpBinding>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment