One of my domain on Cloudflare has now Let’sEncrypt issued certificate which is managed by Cloudflare. I don’t know how I did it. The website is hosted in Google Sites. If anyone know, how it happens then please let me know. Because I don’t remember.
Thanks.
sdayman
October 24, 2021, 10:17pm
#2
Cloudflare randomly chooses between Let’s Encrypt and Digicert when it issues certificates for proxied websites.
So there is nothing we can do to choose between?
sdayman
October 24, 2021, 10:19pm
#4
You can use the API to switch.
You can use the undocumented certificate_authority field of the Cloudflare API v4 Documentation call and switch the authority yourself.
curl -X PATCH "https://api.cloudflare.com/client/v4/zones/[zone_id]/ssl/universal/settings" \
-H "Content-Type: application/json" \
-H "X-Auth-Email: [YOUR-EMAIL-ADDRESS]" \
-H "X-Auth-Key: [YOUR-GLOBAL-API-KEY]" \
--data '{"certificate_authority": "digicert"}'
1 Like
system
closed
October 27, 2021, 11:24pm
#6
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.