LoginSignup
0
0

More than 5 years have passed since last update.

S3 においた html を Web に公開する

Posted at

Bucket とファイルの準備

http://YOURBUCKET.s3-website-ap-northeast-1.amazonaws.com/index.html を作る

Bucket Policy に以下を記述する

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "AddPerm",
            "Effect": "Allow",
            "Principal": "*",
            "Action": "s3:GetObject",
            "Resource": "arn:aws:s3:::YOURBUCKET/*"
        }
    ]
}
0
0
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
0
0