Symfony2、KnpGaufetteBundle、Amazon S3 を組み合わせようとしています。KnpGaufette バンドルから、構成に使用する xml 定義を取得しました。しかし、それはxmlにあり、私の設定はymlにあります。そしてなぜか頭が追いつかない。yml で次の変数を定義するにはどうすればよいですか? そして、それらはどういう意味ですか?
<service id="acme.s3" class="AmazonS3">
<argument type="collection">
<argument key="key">%acme.aws_key%</argument>
<argument key="secret">%acme.aws_secret_key%</argument>
</argument>
</service>
<service id="acme.s3.adapter" class="Gaufrette\Adapter\AmazonS3">
<argument type="service" id="acme.s3"></argument>
<argument>%acme.s3.bucket_name%</argument>
</service>
<service id="acme.fs" class="Gaufrette\Filesystem">
<argument type="service" id="acme.s3.adapter"></argument>
</service>
完全なソリューションで更新
したがって、実際に機能させるには、構成を yml に書き留める必要があるだけでなく (これは chmeliuk -> おかげで解決されました)、curl 用に cacert.pem ファイルを構成する必要もあります。ここで適切なものを入手できます: http://curl.haxx.se/ca/cacert.pem
これを好きな場所に置き、追加のcertificate_authorityエントリで次の行を使用します。
services:
acme.s3:
class: AmazonS3
arguments:
options: { key: %acme.aws_key%, secret: %acme.aws_secret_key%, certificate_authority: "pathWhereYouDidPutThisFile/cacert.pem" }
acme.s3.adapter:
class: Gaufrette\Adapter\AmazonS3
arguments:
service: @acme.s3
bucket_name: %acme.s3.bucket_name%
acme.fs:
class: Gaufrette\Filesystem
arguments:
adapter: @acme.s3.adapter
これにより、他の方法で発生する可能性がある CA Cert cURL エラー 60 が解決されます。