Created
January 4, 2014 03:46
-
-
Save wankormaru/8251379 to your computer and use it in GitHub Desktop.
AWS SDK for PHP ver.2.5 config.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php return array( | |
'includes' => array('_aws'), | |
'services' => array( | |
'default_settings' => array( | |
'params' => array( | |
'key' => 'AAAAAAAAAAAAAAAAAAAA', | |
'secret' => 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAA', | |
'region' => 'ap-northeast-1' | |
) | |
), | |
's3' => array( | |
'alias' => 'S3', | |
'extends' => 'default_settings', | |
'class' => 'Aws\S3\S3Client' | |
) | |
) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ドキュメントルートの上の階層など任意のディレクトリに設置する