Yes, I used the same cert and key files generated when I setup SSL on my services in whm.
Here is the vhost I used:
Code:
<IfDefine SSL>
<VirtualHost 1.1.1.1:443>
ServerName server.yourhost.com
ServerAlias www.server.yourhost.com
DocumentRoot /usr/local/apache/htdocs
ServerAdmin webmaster@server.yourhost.com
UseCanonicalName off
UserDir public_html
<IfModule mod_suphp.c>
suPHP_UserGroup nobody nobody
</IfModule>
## User nobody # Needed for Cpanel::ApacheConf
CustomLog /usr/local/apache/domlogs/server.yourhost.com-bytes_log "%{%s}t %I .\n%{%s}t %O ."
ScriptAlias /cgi-bin/ /usr/local/apache/htdocs/cgi-bin/
SSLEngine on
SSLCertificateFile /etc/ssl/certs/server.yourhost.com.crt
SSLCertificateKeyFile /etc/ssl/private/server.yourhost.com.key
SSLCACertificateFile /etc/ssl/certs/server.yourhost.com.cabundle
ErrorLog /usr/local/apache/domlogs/server.yourhost.com-ssl_data_log
CustomLog /usr/local/apache/domlogs/server.yourhost.com-ssl_log combined
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
</VirtualHost>
</IfDefine>