s3fsおよびubuntuでのファイル許可


1

私はこのガイドに従って、grunt-s3を使用してember-jsアプリケーションのAmazon s3アップロード手順をセットアップしました。http//www.octolabs.com/blogs/octoblog/2014/05/24/deploying-ember-cli-to -amazon-s3-with-grunt /

私は、ubuntuサーバーにs3ファイルシステムをマウントすると、すべてのファイルが許可モード000になっていることに気付きました。

許可644のファイルが欲しいのですが、どうすればそれを実現できますか?

回答:


0

grunt.jsファイルのオプションセクションに、「x-amz-meta-mode」を追加しました:「33188」

options: {
    key: '<%= aws.AWSAccessKeyId %>',
    secret: '<%= aws.AWSSecretKey %>',
    bucket: '<%= aws.bucket %>',
    access: 'public-read',
    headers: {
      // Two Year cache policy (1000 * 60 * 60 * 24 * 730)
      "Cache-Control": "max-age=630720000, public",
      "x-amz-meta-mode": "33188",
      "Expires": new Date(Date.now() + 63072000000).toUTCString()
    }
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.