1

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?

Sam Jarman
  • 7,277
  • 15
  • 55
  • 100
  • Have you seen http://stackoverflow.com/questions/18908426/increasing-client-max-body-size-in-nginx-conf-on-aws-elastic-beanstalk – Noman Ur Rehman Apr 14 '15 at 08:17

1 Answers1

1

So this answer here is correct: Increasing client_max_body_size in Nginx conf on AWS Elastic Beanstalk

Watch your file extension too, I derped and wrote .conf instead of .config. Easy enough to do when you use conf so much for nginx stuff.

Community
  • 1
  • 1
Sam Jarman
  • 7,277
  • 15
  • 55
  • 100