Custom domain names

API Gateway generates random domain names for our applications:

https://<random>.execute-api.<region>.amazonaws.com/

It is possible to replace those URLs by a custom domain.

These guides assume you already own the domain name you will want to use.

Custom domains for HTTP lambdas

The first thing to do is register the domain in ACM (AWS Certificate Manager) to get a HTTPS certificate. This step is not optional.

  • open this link or manually go in the ACM Console and click "Request a new certificate" in the us-east-1 region (the region used for global "edge" certificates)
  • add your domain name and click "Next"
  • choose the domain validation of your choice
    • domain validation will require you to add CNAME entries to your DNS configuration
    • email validation will require you to click a link you will receive in an email sent to admin@your-domain.com

After validating the domain and the certificate we can now link the custom domain to our application via API Gateway.

  • open API Gateway's "Custom Domain" configuration
  • switch to the region of your application
  • click "Create"
  • enter your domain name, select the certificate you created above and save
  • edit the domain that was created
  • click "Configure API mappings" to add an "API mapping": select your application and the $default stage (or dev in some cases), for example:

  • after saving the "API mappings", find the API Gateway domain name in the "Configurations" tab
  • create a CNAME entry in your DNS to point your domain name to this domain

After waiting for the DNS change to propagate (sometimes up to several hours) your website is now accessible via your custom domain.

You can also take a look at the plugin serverless-domain-manager.
It handles the custom domain creation and optionally adds the Route53 record if asked. It is still necessary to create the ACM certificate manually.

A basic implementation is proposed here : https://www.serverless.com/blog/serverless-api-gateway-domain#create-a-custom-domain-in-api-gateway

Custom domains for static files on S3

Some applications serve static files hosted on AWS S3. You can read the Websites documentation to learn more.

If you want to host a fully static website with HTML files or a Single Page Application (eg. built with Vue, React or Angular) you may be interested in the Static Website construct of the Lift plugin.

This allows to configure custom domains, root domain to www redirects and more. Check out the official documentation for more details.