过去几天我一直在努力增加nginx的上传限制,这与我的弹性beanstalk实例不同。根据我的理解,我需要一个ebextensions文件来设置client_max_body_size。我尝试了几种不同的配置方式,比如直接覆盖nginx.conf以在live服务器上的nginx.conf中插入client_max_body_size。这些方法都没有奏效。我确定在每次尝试后手动重新加载文件。就目前而言,这就是我的配置文件目前的样子(经过几次迭代):
.ebextensions / 01_nginx.config
files:
/etc/nginx/conf.d/proxy.conf:
content: |
client_max_body_size 2G;
如果有人能帮助我那将是非常棒的。
答案 0 :(得分:0)
您可以扩展或覆盖它。
Elastic Beanstalk提供了一个默认的nginx配置 使用您自己的配置完全扩展或覆盖
Overriding
~/workspace/my-app/
|-- .ebextensions
| `-- nginx
| `-- conf.d
| `-- myconf.conf
与文档中的示例相比,您的配置与您的问题相符。通过sshing
验证你的nginx conf的位置$ eb ssh environment-name
$ sudo service nginx configtest
nginx: the configuration file /${LOCATION}/nginx.conf syntax is ok
nginx: configuration file /${LOCATION}/nginx.conf test is successful
文档示例
"/home/ec2-user/myfile2" :
content: |
# this is my file
# with content
如果你有正确的nginx配置路径,也可以尝试将nginx重新加载到.ebextensions。
files:
/etc/nginx/conf.d/proxy.conf:
mode: "000644"
owner: root
group: root
content: |
client_max_body_size 2G;
commands:
01_reload_nginx:
command: "sudo service nginx reload"
答案 1 :(得分:0)
这可能对我有用,因为它对我有用。参考表格aws ebs docs
要扩展 Elastic Beanstalk 默认 nginx 配置,请将 .conf 配置文件添加到应用程序源包中名为 .platform/nginx/conf.d/ 的文件夹中。 Elastic Beanstalk nginx 配置会自动在此文件夹中包含 .conf 文件。
~/workspace/my-app/
|-- .platform
| `-- nginx
| `-- conf.d
| `-- myconf.conf
`-- other source files
myconf.conf
client_max_body_size 50M;
注意 添加或编辑 nginx .conf 配置文件时,请务必将其编码为 UTF-8。