Question

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

Solved · 351 viewsasked by imani_w

Added example.com and www.example.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

2 answers

Marked as helpful by the asker
deploydan

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
Glad it worked. deploydan
Also check for an AAAA record, same trap. nadia_r
ximena_c

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

Comment