如何在Nginx和Amazon ElasticBeanstalk中解决错误413请求实体太大?

时间:2015-01-19 17:53:18

标签: ruby-on-rails amazon-web-services nginx amazon-ec2 elastic-beanstalk

我在项目中上传大图片时遇到问题,我的配置是使用puma和RoR。我在elasticbeanstalk中的用户是ec2-user。

我尝试过很多我看过的配置,但它无法正常工作。 .ebextensions中的文件就像这样:

files:
  "/etc/nginx/conf.d/proxy.conf" :
    mode: "000777"
    owner: root
    group: root
    content: |
        client_max_body_size 4G;

其他配置但不起作用

files:
  "/etc/nginx/conf.d/proxy.conf" :
    mode: "000755"
    owner: ec2-user
    group: ec2-user
    content: |
        client_max_body_size 50M;

文件已创建但未成功。有什么建议?感谢。

2 个答案:

答案 0 :(得分:3)

我已经解决了我的问题,我不得不在http中添加:client_max_body_size

files:
  "/etc/nginx/conf.d/proxy.conf" :
    mode: "000755"
    owner: root
    group: root
    content: |
        http {
          client_max_body_size 20M;
        }

答案 1 :(得分:3)

我已经用这个文件解决了这个问题:.ebextensions / 01_files.config

container_commands:
  01_reload_nginx:
    command: "service nginx reload"
files:
    "/etc/nginx/conf.d/proxy.conf":
      mode: "000755"
      owner: root
      group: root
      content: |
        client_max_body_size 0;