Error configuring Cloudflare Pages custom domain

I set up a custom domain on Cloudflare Pages, but when I access the address, an ERR_SSL_VERSION_OR_CIPHER_MISMATCH error is returned.
The pages.dev address works, but the domain does not.

https://redelimpanome-parceiros-app.pages.dev
https://parceiro.redelimpanome.com.br

Custom domain is pending, go through: Debugging Pages Β· Cloudflare Pages docs

The request return this
curl: (35) error:0A000410:SSL routines::sslv3 alert handshake failure
Could this be a problem with the SSL where the domain is hosted?

You’re missing the CAA Records for Google CA, Pages will either use Let’s Encrypt or Google:

;; QUESTION SECTION:
;redelimpanome.com.br. IN CAA

;; ANSWER SECTION:
redelimpanome.com.br. 14400 IN CAA 0 issuewild β€œletsencrypt.org”
redelimpanome.com.br. 14400 IN CAA 0 issue β€œdigicert.com”
redelimpanome.com.br. 14400 IN CAA 0 issue β€œletsencrypt.org”
redelimpanome.com.br. 14400 IN CAA 0 issue β€œcomodoca.com”
redelimpanome.com.br. 14400 IN CAA 0 issuewild β€œdigicert.com”
redelimpanome.com.br. 14400 IN CAA 0 issuewild β€œcomodoca.com”
redelimpanome.com.br. 14400 IN CAA 0 issue β€œglobalsign.com”
redelimpanome.com.br. 14400 IN CAA 0 issue β€œsectigo.com”
redelimpanome.com.br. 14400 IN CAA 0 issuewild β€œsectigo.com”
redelimpanome.com.br. 14400 IN CAA 0 issuewild β€œglobalsign.com”

The ones you are missing:

example.com. 300 IN CAA 0 issue β€œpki.goog; cansignhttpexchanges=yes”
example.com. 300 IN CAA 0 issuewild β€œpki.goog; cansignhttpexchanges=yes”

Add them to your DNS of the domain you want to add the custom domain for, wait a bit for propagation, and try deleting/readding the Custom Domain

1 Like