I plan to add more of these over time but for starters, here are a few helpful bucket policies I use while hosting static websites on AWS S3. ACCESS Public Access If you're building an Angular app or a single landing page, this is pretty much all you need. { "
AWS
Total 48 Posts
While learning AWS S3 encryption, I found most of the information online to either be technically dense or unnecessarily difficult to understand. Below are my plain English explanations. NOTE: I found this article and it does a much better job providing a comprehensive overview. I suggest reading this article Server
How to create a custom URL redirect (or forward) using Amazon Web Services.
Amazon Web Services offers a suite of tools for podcast producers to distribute their audio online. There's CloudFront for caching, S3 for storage, Glacier for long-term storage, Elemental for real-time distributing, Tailor for server-side ad insertion. I thought it would be to fun to show how to use Elastic Transcoder
See this error? (98) Address already in use: make_sock: could not bind to address 0.0.0.0:80. Here's how to fix it.
Here are three ways to get the instance ID of an EC2 server using the command line. Built-in If you are logged into an Ubuntu machine. ec2metadata --instance-id Curl curl command using an IP address. curl http://169.254.169.254/latest/meta-data/instance-id curl command simplified. curl http://instance-data/
Amazon offers a newer, simpler alternative to EC2 instances called Lightsail. Lightsail is very easy to use and excellent for any small business interested in creating a simple app. I was recently asked to create a Wordpress website using Lightsail and it took less than 10 minutes. In fact, the
In my previous article I share how to install Icecast on an Ubuntu instance on AWS EC2. This next article will now focus on publishing MP3 to Icecast (for web distribution) using NodeJS. Why Node? Although there are many excellent tools, like Nicecast, that can help you publish an Mp3
Icecast is an open source server designed to help you stream music over the web. The server is designed for DevOps administrators who prefer managing through configuration files. Today we will recreate a cloud-based radio station using AWS EC2, Icecast and Mac OS X. Step 0 - Setting up AWS
AWS's API Gateway is great for developers who need a simple API for their SaaS Services. When it comes to testing out your API, there are many great tools such as POSTMAN or PAW but sometimes all you really need is a few curl commands These are the three commands