I have a .Net core api installed on AWS Beanstalk. I am getting error "client intended to send too large body: 10181136 bytes" on uploading large file. How to increase max request size.
I tried creating ngnix.config file under .ebextensions folder with below configuration
files:
/etc/nginx/conf.d/proxy.conf:
content: |
client_max_body_size 50M;
it didn't work for me.