DEV Community

Cover image for Say Goodbye to Ugly Error Pages with Cloudfront 👋
Adrien Mornet for AWS Community Builders

Posted on

Say Goodbye to Ugly Error Pages with Cloudfront 👋

Who has never found themselves in the middle of surfing the internet when faced with an ugly error page ? These kind of pages are the default error pages of web servers like Apache or Nginx.

More recently, you may also come across the Cloudfront default errors :

Image description

Nothing could be worse in terms of user experience, could it? These generic error pages can be frustrating, uninformative, and can make users question the reliability of a website. In the world of DevOps, where continuous deployment and high availability are key objectives, the last thing you want is to present your users with a subpar experience during moments of downtime or unexpected errors.

In a modern website architecture using a Content Delivery Network, the CDN is the last component capable of catching underlying errors and saving the day :

Let's configure AWS Cloudfront to catch errors from underlying components (and even an error in Cloudfront itself) !

We're going to do this in just a few steps :

  1. Create a pretty HTML error page
  2. Deploy the error page with AWS S3 static website hosting
  3. Add S3 static website as Cloudfront origin
  4. Set up Cloudfront error pages

Create a pretty HTML error page

Let's ask ChatGPT to create a nice error page for us 😏

Deploy the error page with AWS S3 static website hosting

Amazon S3, Amazon Web Services' object storage service, offers a really simple way to deploy static HTML pages which we are going to use. To make this simpler, we're going to do it via click ops on the AWS console.

Create a public S3 bucket with public access :

Go to your bucket, click upload button and upload your index.html file :

Go to properties > Static website hosting and enable static website hosting for your bucket :

Image description

You will now have an HTTP endpoint to access your website :

Go to permissions > Bucket policy and allow everyone to get your files :

Image description

Now you should be able to access your index.html with the static url of your S3 bucket (demo-error-page.s3-website-us-east-1.amazonaws.com in my case) :

Image description

Add S3 static website as Cloudfront origin

I'm going to assume here that you already have a working Cloudfront distribution with at least one origin :

Image description

Let's add our S3 website endpoint (the url which contains s3-website, not the bucket endpoint) as a new Cloudfront origin :

Image description

Now we can add a new behavior for our Cloudfront distribution on a custom path :

Image description

In this way, requests whose path matches /cloudfront-catched-errors-demo/* will be sent to our bucket :

Image description

Set up Cloudfront error pages

We are now going to configure our distribution so that it catches errors and redirects them invisibly for the user. To do this, Cloudfront offers an "Error Pages" section where we can configure custom error response :

Image description

Let's create a custom error response :

Image description

By doing that, we are going to catch all 502 HTTP errors and show our pretty HTML error page by setting "Response page path" to /cloudfront-catched-errors-demo/index.html. Let me show you!

Before :

Image description

After :

Image description

To go further

I recommend that you catch at least HTTP 500, 501, 502, 503 and 504 errors via Cloudfront error pages because they concern server-side errors and are not managed by the application server. For 4xx errors, as they concern errors made by the customer, this is more debatable. If the error is handled correctly by the application, you might as well leave this role to it (this is very often the case for 404 errors, which are handled by web mode frameworks).

If you liked this post, you can find more on my blog https://adrien-mornet.tech/ 🚀

Top comments (1)

Collapse
 
avinashdalvi_ profile image
Avinash Dalvi

Very useful information