Hi, I am running apache 2.2 and I have a SSL certificate that I bought through Enom. I have the apache entry setup in the httpd-vhost.conf file as per below: <VirtualHost 77.92.70.252:80> ServerAdmin [email protected] DocumentRoot /opt/lampp/htdocs/pineapple ServerName www.pineappleshoes.com ServerAlias pineappleshoes.com ErrorLog /var/log/pineapple-error_log CustomLog /var/log/pineapple-access_log common </VirtualHost> Just in case you want to see that the site exists you will need to change your host file as the domain name is not pointing at the server yet. I have done some reading and thought that this would work by inserting this into the httpd-ssl.conf file. <VirtualHost 77.92.70.252:443> ServerAdmin [email protected] DocumentRoot /opt/lampp/htdocs/pineapple ServerName www.pineappleshoes.com ServerAlias pineappleshoes.com ErrorLog /var/log/pineapple-error_log CustomLog /var/log/pineapple-access_log common SSLEngine on SSLCertificateFile /opt/lampp/etc/ssl.crt/pineappleshoes.crt SSLCertificateKeyFile /opt/lampp/etc/ssl.key/pineappleshoes.key </VirtualHost> However this does not work and apache will not restart. Can anyone help me? Regards Gareth