Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@scattered-code
Created September 21, 2020 18:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scattered-code/7243d11dd90e80ab45913b51156f8750 to your computer and use it in GitHub Desktop.
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