dev308
September 27, 2023, 12:07am
1
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
dev308
September 27, 2023, 12:15am
5
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?
Chaika
September 27, 2023, 1:23pm
6
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