This blog post explains how to use your own domain for a site managed by Vercel.
For each project, such as a website, Vercel creates subdomains within its own domains. For a project named vercel under the deliverystack Vercel account, Vercel created the following subdomains:
The pattern appears to be projectname-source-branchname-accountname.vercel.app where source is the source of the deployment, which is probably git for github and something else for gitlab or bitbucket.
To use your own domain for a Vercel site:
- Set the A record for the domain to the Vercel Anycast address:
76.76.1.1

This did not apply to me, but according to https://vercel.com/support/articles/a-record-and-caa-with-vercel:
- If you already have a CAA record in your root domain, it is also necessary to include a CAA record with the value “0 issue letsencrypt.org”.
Then, in the Vercel UI, click the project, then click the Settings tab, then click Domains in the left-nav, enter the domain, and then click add (see https://vercel.com/support/articles/a-record-and-caa-with-vercel).

Vercel provides a handy prompt.

Vercel also generates some handy SSL certificates and redirects from HTTP to HTTPS.

Vercel should inform you if DNS settings do not appear to be correct.

Now access the domain (http://johnwest.me).

One thought on “Use Your Own Domain for a Vercel Site”