Post 1.3: S3 Static Website Hosting

Create Public S3 Bucket S3 static website hosting is the easiest way to host websites on AWS. First, let’s create the S3 bucket. S3 has certain rules in place when creating a bucket name, and names must be globally unique. In the example output, you’ll see a random string of numbers appended to the bucket name to provide this uniqueness.: aws s3 mb s3://your-bucket-name Now we need to specify the names of our --index-document and --error-document for static website hosting....

March 26, 2023 · 2 min · 356 words · David Dacalio

Post 1.2: Hugo Web Server

config.yml In this section, I’ll provide a few quick tips on getting your Hugo “localhost” web server up and running. Open your Hugo config.yml file at the root of your theme folder using Cloud9, add the following line, and save. theme: "Papermod" hugo server The hugo server CLI command launches a local test server that allows you to preview any changes made to your website’s code. I will provide the command to view your web server using Cloud9 and explain its components later....

March 25, 2023 · 2 min · 242 words · David Dacalio

Post 1.1: AWS Cloud9

Why Cloud9 I needed an IDE that I could access anywhere and on any device. After some searching, I found that Cloud9 fit the bill perfectly. By using a t2.micro EC2 instance, there is no cost (at least for the first year) as long as I avoid any snapshots or unforeseen circumstances. My ultimate goal is to host this blog using the Hugo PaperMod theme on CloudFront. In this post, I will guide you through the process of setting up your Cloud9 environment and installing both Hugo and the PaperMod theme....

March 24, 2023 · 2 min · 401 words · David Dacalio

Post 1.0: This Blog

About Me Welcome to my blog! My name is David Dacalio. I am passionate about digital technologies with a focus on security. I have created this blog to share my thoughts, experiences, and knowledge with the community. Firstly, I would like to clarify that these posts are not affiliated with any company. They are purely my personal opinions and insights based on my own experiences and research. In this blog, I plan to document my certifications, learning experiences, and how I’m building this site....

March 4, 2023 · 1 min · 171 words · David Dacalio