在存储/框架/缓存上具有laravel权限的PHP Beanstalk被拒绝


PHP Beanstalk with laravel permission denied on storage/framework/cache

我已经使用Amazing Beanstalk部署了我的Laravel 5.1应用程序,经过多次使用,我最终得到了这个错误。

"file_put_contents(/var/app/current/storage/framework/cache/d4/d7/d4d77eddeb64100f6da8f8b601a4631b): failed to open stream: Permission denied"

在我的.eextensions配置文件中,我尝试将此命令添加到部署中,但它并没有解决问题,因为这些文件似乎是在部署后浏览网站时创建的。

container_commands:
  "02-chmod-storage":
    command: "cd /var/app/ondeck;  chmod -R 777 storage"

如何永久修复此问题?

这应该做到:

commands:
  create_post_dir:
    command: "mkdir /opt/elasticbeanstalk/hooks/appdeploy/post"
    ignoreErrors: true
files:
  "/opt/elasticbeanstalk/hooks/appdeploy/post/99_chmod_storage.sh":
    mode: "000755"
    owner: root
    group: root
    content: |
      #!/usr/bin/env bash
      . /opt/elasticbeanstalk/support/envvars
      cd $EB_CONFIG_APP_CURRENT
      su -c "chmod -R 777 storage" $EB_CONFIG_APP_USER

尝试在/storage上设置ACL权限,允许rootwebapp(或运行web服务器的用户名)的rwx访问:

files:
  "/opt/elasticbeanstalk/hooks/appdeploy/post/99_setfacl_storage.sh":
    mode: "000755"
    owner: root
    group: root
    content: |
      #!/usr/bin/env bash
      echo "Setting ACL permissions for /storage..."
      setfacl -Rdm u:root:rwx,u:webapp:rwx /var/app/current/storage
      setfacl -Rm u:root:rwx,u:webapp:rwx /var/app/current/storage