45
44

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

AWSのS3で静的Webサイトを公開する手順まとめ

Last updated at Posted at 2015-10-20

AWSをアカウントでログインしてからS3の項目へ遷移してからの手順

#バケットを作成

  • ドメインを設定する場合はバケット名はドメイン名にしておく

#プロパティの設定

  • アクセス許可
    • 「全員」リストをチェック
    • バケットポリシー追加・編集(なくてもいいかも)
{
	"Version": "2015-10-20",
	"Statement": [
		{
			"Sid": "AllowPublicRead",
			"Effect": "Allow",
			"Principal": {
				"AWS": "*"
			},
			"Action": "s3:GetObject",
			"Resource": "arn:aws:s3:::ドメイン.com/*"
		}
	]
}
  • 静的ウェブサイトホスティング
    • 静的ウェブサイトホスティングを有効にするにチェック
    • インデックスドキュメントを設定(普通はindex.html)

#ファイルアップロード
Webサイトからでも、CyberDuckのS3プロトコルを使っての転送でもお好きな方をどうぞ

#性的Webサイトを公開したい場合

AWSのS3で性的Webサイトを公開する手順まとめ
こちらをご参照ください。

45
44
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
45
44

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?