Amazon Simple Storage Service (Amazon S3) is like a super reliable and secure storage space on the internet. It's designed for storing all kinds of information, whether you're running a website, using mobile apps, or managing data for your business. Think of it as a virtual warehouse where you can keep your data safe and easily access it whenever you need. It's versatile enough for various uses like storing pictures, running websites, keeping backups, or handling big data projects. Plus, it comes with handy tools that help you organize and control who gets to see and use your stored information based on your specific needs.
Copy and paste the below policy in the editor and make the needed changes:
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "PulbicReadGetObject",
"Effect": "Allow",
"Principal": "*",
"Action": "s3:GetObject",
"Resource":
"arn:aws:s3:::{change-this-to-your-bucket-name}/*"
}
]
}
Notes:
Allow
or
Deny
.
*
for public access.
Amazon S3 can host static sites only.
A static site refers to a type of website that is made up of fixed, unchanging files. The content and layout of a static site are typically written in HTML, CSS, and sometimes JavaScript, and these files remain the same for every user who visits the site. Unlike dynamic websites that generate content on the fly, static sites do not change based on user interactions or inputs. In a static site, each page is pre-built and exists as a separate file. When a user requests a page, the server simply sends that specific file to the user's browser. This simplicity can result in faster loading times and efficient performance, as there's no need for server-side processing or database queries for every page request. However, static sites may have limitations when it comes to interactive features or content that frequently changes. They are well-suited for websites with straightforward content and where frequent updates or user interactions are not essential. Common use cases for static sites include portfolios, blogs, informational sites, or landing pages.