Change certificate names returned by the browser

When activating the proxy and the SSL it appears in the browser certificate:

I would like my domain to be issued even though Cloudflare is activated, for example:
Issued to: my domain
Issued By: Cloudflare Inc ECC CA-3
How can I achieve this?
Thanks

I guess you can try change the CA to Let’s Encrypt, although it’s completely superficial. This will remove the Issued By: Cloudflare INC ECC CA-3 though.

curl -X PATCH "https://api.cloudflare.com/client/v4/zones/ZONE_ID/ssl/universal/settings" \
     -H "X-Auth-Email: EMAIL_ADDRESS" \
     -H "X-Auth-Key: API_KEY" \
     -H "Content-Type: application/json" \
     --data '{ "certificate_authority": "lets_encrypt" }'

Look at Cloudflare API v4 Documentation in regards to how to get your X-Auth-Key.

2 Likes

Thank you very much for answering, a question if my ssl is not from let’s encrypt simply in --data I change the name that I want to appear?

No - this is changing the CA that Universal SSL uses.

It’s unrelated to any certificate on your websites hosting.

1 Like

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.