Demo, all content is generated
Question

Vercel domain says 'Invalid Configuration' for 3 days, domain from GoDaddy

Solved · 351 views · asked by imani_w · edited

Added mydomain.com and www.mydomain.com in Vercel. Both show Invalid Configuration with a red cross. I added the A record Vercel shows in GoDaddy DNS. When I visit the domain I get a GoDaddy page that says the domain is parked.

What I’ve tried

Waited 3 days for propagation, clicked Refresh in Vercel many times, added the A record again.

Comment
Can you paste your full DNS record list (hide nothing but the domain)? ximena_c · edited

2 answers

Marked as helpful by the asker
deploydan · edited

GoDaddy puts its own parking A record on @ and you now have two. DNS hands out both, so some checks see Vercel and most see the parking page.

  1. In GoDaddy DNS, delete the A record for @ with the value "Parked" (or any IP that isn't the one Vercel gave you).
  2. For www, GoDaddy has a CNAME pointing to @ by default. Change it to the CNAME value Vercel shows for www.
  3. Check Forwarding at the bottom of the DNS page. If domain forwarding is on, turn it off.

Then pick one as primary in Vercel (usually apex or www) and set the other to redirect to it. Three days of "propagation" is almost never propagation, it's a conflicting record.

Comment
the Parked record. it didn't even look like an IP so I ignored it. green checkmarks now imani_w · edited
Glad it worked. deploydan · edited
Also check for an AAAA record, same trap. nadia_r · edited
ximena_c · edited

To stop guessing: run dig mydomain.com A +short and dig www.mydomain.com CNAME +short. What comes back is the truth, whatever the registrar UI shows.

Comment