LoginSignup
2
2

More than 5 years have passed since last update.

【AWS】【S3】エラー: The bucket you are attempting to access must be addressed using the specified endpoint..が出たら

Posted at

AWS SDK for PHPを使ってS3にファイルをアップロードしようとした際に下記のようなエラーが出ました。

AWS Error Message: The bucket you are attempting to access must be addressed using the specified endpoint. Please send all future requests to this endpoint: "sub.domain.com.s3.amazonaws.com".

結論から言うとRegionを使用しているものに変更することで解決できました。
(デフォルトではUS Regionらしいです。)

以下のように設定します。

$s3 = S3Client::factory(array(
    'region' => 'ap-northeast-1'
));
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2