Skip to content

Instantly share code, notes, and snippets.

@scattered-code
Created September 21, 2020 18:25
Show Gist options
  • Select an option

  • Save scattered-code/7243d11dd90e80ab45913b51156f8750 to your computer and use it in GitHub Desktop.

Select an option

Save scattered-code/7243d11dd90e80ab45913b51156f8750 to your computer and use it in GitHub Desktop.
public void ConfigureServices(IServiceCollection services)
{
...
services.AddMvc();
services.Configure<FormOptions>(x =>
{
x.MultipartBodyLengthLimit = 209715200;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment