Converting a Wordpress Site into a Static Site Hosted on S3

preview_player
Показать описание
In this video we go over how to convert wordpress into a static site, and then how to upload the static site to an S3 bucket to host the site on S3

S3 bucket policy below:

{
"Version":"2012-10-17",
"Statement":[
{
"Sid":"AddPerm",
"Effect":"Allow",
"Principal": "*",
"Action":["s3:GetObject"],
"Resource":["arn:aws:s3:::examplebucket/*"]
}
]
}
Рекомендации по теме