0
0

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 3 years have passed since last update.

AWS CloudFormationを使ってS3で静的WEBサイトをホストするメモ

Posted at

###前提
AWS CLIのプロファイル作成済み
https://qiita.com/pino2/items/c0ede5c2b23f7f898a99

###S3で静的WEBサイトをホストするCloudFormaitonテンプレート作成

ここにあったのでコピペ
https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/quickref-s3.html

###スタック作成

> aws cloudformation deploy --template /path_to_template/my-template.json --stack-name my-new-stack

[スタック名]-s3bucket-~
の名前でパブリックアクセス可能なバケットができた。

###WEBサイト表示

S3バケットにindex.htmlをアップロード

<!DOCTYPE html>
<html lang="ja">
  <head>
    <meta charset="utf-8" />
    <meta name="description" content="Hello" />
    <title>Hello</title>
  </head>
  <body>
    Hello!!
  </body>
</html>

管理コンソール>バケット>プロパティ>「静的ウェブサイトホスティング」に記載のURLをクリックしたらアップロードしたhtmlが表示された。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?