这个问题有很多答案(question 1 question 2),但这个应该有用的解决方案对我不起作用:
files:
"/etc/nginx/conf.d/proxy.conf" :
mode: "000755"
owner: root
group: root
content: |
client_max_body_size 50M;
我已经通过ssh及其正确检查了这个创建文件的状态和内容。我也尝试了其他值并多次重启服务器。
client_max_body_size 0;
或
http {
client_max_body_size 50M;
}
此值也不起作用。
它只是不会工作,即使只是"只是"一张6mb的图片。它适用于大小为0.5mb的较小图像。它是运行Ruby 2.5(Puma)"的64位Amazon Linux 2018.03 v2.8.0的RoR应用程序。实例大小为t2.micro。答案 0 :(得分:4)
尝试一下。它对我有用:
content: |
server {
***your server configuration***
location / {
client_max_body_size 100M;
}
}