I'm trying to up the current (2MB) limit on Elastic Beanstalk.
So far, I have:
in a new file, root/.ebextensions/nginx.conf
files:
"/etc/nginx/conf.d/proxy.conf":
mode: "000755"
owner: root
group: root
content: |
http {
client_max_body_size 50M;
}
I haven't had much luck trying to get this to work - any ideas?