Your site is serving HTTP on port 443 (the port for HTTPS). Try browsing to http://www.srparquet.es:443 to verify this.
I don’t see any <VirtualHost> tags in the configuration you provided. Typically the configuration where you enable SSL would be inside of a <VirtualHost *:443> tag. I’m not too familiar with CWP and its configuration structure, so I don’t really have a ready-made solution for this without seeing the rest of the configuration, but maybe this will point you in the right direction.
I’ve added files because this editor strips :80 and :443 , I don’t know why.
grep -ri listen /usr/local/apache/conf
/usr/local/apache/conf/extra/httpd-ssl.conf:# When we also provide SSL we have to listen to the
/usr/local/apache/conf/extra/httpd-ssl.conf:# Listen directives: “Listen [::]:443” and “Listen 0.0.0.0:443”
/usr/local/apache/conf/extra/httpd-ssl.conf:Listen 443
/usr/local/apache/conf/original/extra/httpd-ssl.conf:# When we also provide SSL we have to listen to the
/usr/local/apache/conf/original/extra/httpd-ssl.conf:# Listen directives: “Listen [::]:443” and “Listen 0.0.0.0:443”
/usr/local/apache/conf/original/extra/httpd-ssl.conf:Listen 443
/usr/local/apache/conf/original/httpd.conf:# Listen: Allows you to bind Apache to specific IP addresses and/or
/usr/local/apache/conf/original/httpd.conf:# Change this to Listen on specific IP addresses as shown below to
/usr/local/apache/conf/original/httpd.conf:#Listen 12.34.56.78:80
/usr/local/apache/conf/original/httpd.conf:Listen 80
/usr/local/apache/conf/httpd.conf:# Listen: Allows you to bind Apache to specific IP addresses and/or
/usr/local/apache/conf/httpd.conf:# Change this to Listen on specific IP addresses as shown below to
/usr/local/apache/conf/httpd.conf:#Listen 12.34.56.78:80
/usr/local/apache/conf/httpd.conf:Listen 80
I don’t see any obvious issues. Can you grep for “:443” to see if there are any other vhosts somewhere else that might interfere, or maybe for “:*” to see if there’s a vhost that’s listening on all ports?
I reinstalled let’s encrypt and it gave a Multilib Error: Multilib version problems found… I ran yum update and reinstalled certificates and it’s working now.
Thank you for your help.