使用 Ruby 2.0、Rails 4.1、nginx 更改 Elastic Beanstalk 上的文件大小限制
Change file size limit on Elastic Beanstalk with Ruby 2.0, Rails 4.1, nginx
我正在尝试提高 Elastic Beanstalk 的当前 (2MB) 限制。
到目前为止,我有:
在新文件中,root/.ebextensions/nginx.conf
files:
"/etc/nginx/conf.d/proxy.conf":
mode: "000755"
owner: root
group: root
content: |
http {
client_max_body_size 50M;
}
我没有太多运气来尝试让它工作 - 有什么想法吗?
所以这里的答案是正确的:Increasing client_max_body_size in Nginx conf on AWS Elastic Beanstalk
也要注意你的文件扩展名,我把 .config
写成了 .conf
而不是 .conf
。当你对 nginx 的东西使用如此多的 conf
时,这很容易做到。
我正在尝试提高 Elastic Beanstalk 的当前 (2MB) 限制。
到目前为止,我有:
在新文件中,root/.ebextensions/nginx.conf
files:
"/etc/nginx/conf.d/proxy.conf":
mode: "000755"
owner: root
group: root
content: |
http {
client_max_body_size 50M;
}
我没有太多运气来尝试让它工作 - 有什么想法吗?
所以这里的答案是正确的:Increasing client_max_body_size in Nginx conf on AWS Elastic Beanstalk
也要注意你的文件扩展名,我把 .config
写成了 .conf
而不是 .conf
。当你对 nginx 的东西使用如此多的 conf
时,这很容易做到。