Hail folks, I am a sort of new user here on Cloudflare, I am trying features, performance and services. Last night I’ve spent couple hours stuck on long lifetime SSL, I’ve already used CERTBOT with Cloudflare but I’d like to try do it using dashboard to get 15yrs Cert. I’ve been follow all steps, put my domain on Cloudflare, I waited it get full propagate and so, I created “Origin Server” certificate, I copy and paste the Origin hash content on file on my linux server as my_site.com.pem and the private key as my_site.com.key, also I have downloaded the CA file and store it in the same directory /etc/Cloudflare/, so, I made my own vhost config. file as below, but it shows a unsafe/unrecognized cert (that red warning when cert don’t match with domain), by now, I am stuck on this one and need some community help to hold it on:
<IfModule mod_ssl.c>
<VirtualHost *:443>
SSLEngine on
ServerName my_site_origin.com
ServerAlias my_site_origin.com *.my_site_origin.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/my_site_folder/
SSLCertificateFile /etc/cloudflare/my_site_origin.com.pem
SSLCertificateKeyFile /etc/cloudflare/my_site_origin.key
SSLCACertificateFile /etc/cloudflare/origin_ca_rsa_root.pem
#LOGS:
ErrorLog ${APACHE_LOG_DIR}/mysite-error.log
CustomLog ${APACHE_LOG_DIR}/mysite-access.log combined
</VirtualHost>
</IfModule>