filmov
tv
Quick Guide: Hosting Your Static Website on AWS S3 in 4 Minutes
Показать описание
In this quick and easy tutorial, learn how to host your static website on AWS S3 in just 4 minutes! Follow along step-by-step to set up your website hosting and make it accessible to the world. No prior AWS experience required - get your website up and running in no time!
#cloudcomputing #s3 #webdevelopment
****** Bucket Policy *******
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "PublicReadGetObject",
"Effect": "Allow",
"Principal": "*",
"Action": [
"s3:GetObject"
],
"Resource": [
"arn:aws:s3:::Bucket-Name/*"
]
}
]
}
#cloudcomputing #s3 #webdevelopment
****** Bucket Policy *******
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "PublicReadGetObject",
"Effect": "Allow",
"Principal": "*",
"Action": [
"s3:GetObject"
],
"Resource": [
"arn:aws:s3:::Bucket-Name/*"
]
}
]
}