如何在AWS Elastic Beanstalk上向php.ini添加指令?

前端之家收集整理的这篇文章主要介绍了如何在AWS Elastic Beanstalk上向php.ini添加指令?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想将这些 PHP设置添加到我的Elastic Beanstalk环境中:
upload_max_filesize = 64M
post_max_size = 64M

在.ebextensions中使用option_settings无法设置这些选项:

Namespace                                    | Extend
---------------------------------------------|-------
aws:elasticbeanstalk:application:environment | Yes
aws:elasticbeanstalk:container:PHP:PHPini    | No

如何在Elastic Beanstalk容器中向PHP.ini添加自定义设置?

我找到的最干净的方法是在我的项目档案中使用 .ebextensions config file

示例.ebextensions / project.config文件

files:
  "/etc/PHP.d/project.ini" :
    mode: "000644"
    owner: root
    group: root
    content: |
      upload_max_filesize = 64M
      post_max_size = 64M

部署应用程序版本时,这将在PHP.d目录中编写一个自定义配置文件,该文件将覆盖任何PHP.ini设置.

原文链接:https://www.f2er.com/php/139732.html

猜你在找的PHP相关文章