我正在使用CodeDeploy AWS 部署系统通过Codeship部署Node.js应用程序。
我正在使用appspec.yml文件来设置已部署目录之一的所有者和权限。
我想允许对将在部署的指定文件夹中创建的任何文件进行读/写。Web 应用程序开始运行后将创建文件。
目前我的 appspec.yml 包含以下内容:
version: 0.0
os: linux
files:
- source: /
destination: /var/www/APPLICATION_NAME
permissions:
- object: /var/www/APPLICATION_NAME/tmpfiles
mode: 644
owner: ec2-user
type:
- directory