This repository was archived by the owner on Nov 20, 2018. It is now read-only.

Description
From @Ryuuke on May 27, 2016 18:30
Hello,
I encountered this error when uploading large file (~200MB).
An unhandled exception occurred while processing the request.
Multipart body length limit 134217728 exceeded
at Microsoft.AspNetCore.WebUtilities.MultipartReaderStream.UpdatePosition(Int32 read)
I already tried to modify my web.config file :
httpRuntime maxRequestLength="1073741824" executionTimeout="300000"
and requestLimits maxAllowedContentLength="1073741824"
but still, I get the same error.
I'm using the RC2 version, is there a way to override that limit ?
Copied from original issue: aspnet/KestrelHttpServer#891