Author Archives: Anthony Heddings

Don’t Leave Passwords in Your Code; Use AWS’s Secrets Manager Instead

AWS Secrets Manager makes working with access keys (like database credentials) easier by storing them remotely and controlling the access of them behind IAM permissions. This allows you to smoothly rotate access keys and fetch the latest one whenever n… Continue reading

Posted in Uncategorized | Comments Off on Don’t Leave Passwords in Your Code; Use AWS’s Secrets Manager Instead

The Best AWS Feature You Should Be Using: Object Tagging

Tags are pretty simple—they store a single key-value pair, and are used as metadata for AWS resources to help you stay organized. We’ll show you how to use them, and how to set effective tagging policies for your organization.Read This Arti… Continue reading

Posted in Uncategorized | Comments Off on The Best AWS Feature You Should Be Using: Object Tagging

How to Install and Use Jenkins to Build a CI/CD Pipeline

For software companies following an agile development process, releasing software every day is an intensive process. Jenkins is a tool that can speed up your workflow by automating many of the repetitive tasks, such building, testing, and releasing.Rea… Continue reading

Posted in Uncategorized | Comments Off on How to Install and Use Jenkins to Build a CI/CD Pipeline

How to Configure Cache-Control Headers in Apache

Each user’s browser makes use of a built-in cache to store downloaded objects, which can significantly speed up repeat visits to your website by loading from disk rather than the network. Here’s how to configure it in Apache.Read This Artic… Continue reading

Posted in Uncategorized | Comments Off on How to Configure Cache-Control Headers in Apache

How to Configure Cache-Control Headers in NGINX

Caching is the process of storing downloaded data for later use, where it can be read from disk rather than requesting it again. Making proper use of your browser and CDN caching can speed up your website significantly.Read This Article on CloudSavvy I… Continue reading

Posted in Uncategorized | Comments Off on How to Configure Cache-Control Headers in NGINX

How to Set Up a Website with a CDN on AWS Lightsail

AWS Lightsail is a simpler subset of AWS intended for IT beginners. This week, AWS announced support for CloudFront CDNs in Lightsail, with fixed monthly pricing starting at $2.50. We’ll walk through setting up a high-performance website on Light… Continue reading

Posted in Uncategorized | Comments Off on How to Set Up a Website with a CDN on AWS Lightsail

How to Generate Static Websites with React

React is often used to make dynamic web apps that respond to user input, but it’s also quite useful for static sites. React sites can even be pregenerated during the build process to save on precious milliseconds during page load.Read This Articl… Continue reading

Posted in Uncategorized | Comments Off on How to Generate Static Websites with React

How Do Docker Tags Work?

Docker images use registries for version control, such as the Docker Hub that hosts public images for anyone to download and run. However, before uploading an image to the Hub or any registry, you must give it the proper tags.Read This Article on Cloud… Continue reading

Posted in Uncategorized | Comments Off on How Do Docker Tags Work?

How Should You Secure Your Database?

Your database server often contains your most sensitive data, such as confidential user information. It’s important to implement security best practices to minimize the risk of an attacker gaining access to your database.Read This Article on Clou… Continue reading

Posted in Uncategorized | Comments Off on How Should You Secure Your Database?

AWS Amplify Makes Building Mobile Apps Simple

AWS Amplify is a framework designed to make building web and native applications a lot easier. It focuses on having a fully built backend out of the box—running an API and database with authentication is all handled for you.Read This Article on C… Continue reading

Posted in Uncategorized | Comments Off on AWS Amplify Makes Building Mobile Apps Simple