3

我正在使用 Elastic Beanstalk CLI 在我的生产服务器上安装 OctoberCMS。我创建了一个名为的文件夹.ebextensions,并为php artisan october:up. 但我收到一个错误

The "/var/app/ondeck/storage/cms/combiner" directory does not exist.
container_command 01-migrations in .ebextensions/02-deploy.config failed. For more detail, check /var/log/eb-activity.log using console or EB CLI.

我已经尝试了无法找到相同解决方案提供的大多数选项。以下是代码片段。

files:          
  "/etc/httpd/conf/httpd.conf": 
     mode: "644"
     owner: root
     group: root
     content: |
       AllowOverride All

container_commands:
    09writable_dirs:
        command: "chmod -R 775 /var/app/ondeck/storage"
    01-migrations:
        command: "php artisan october:up"

由于mod_rewrite未启用,我的进一步迁移未播种。任何帮助将不胜感激。

4

0 回答 0