Hopefully you got this answered.
In short however: No - you do not need a new IP for additional SSL certificates. Assuming you are using apache you can just load the SSL certificate under the Virtual Service directive. Example below:
<NameVirtualHost *:443>
<VirtualHost *:443>
ServerName
www.yoursite.com DocumentRoot /var/www/site
SSLEngine on
SSLCertificateFile /path/to/www_yoursite_com.crt
SSLCertificateKeyFile /path/to/www_yoursite_com.key
SSLCertificateChainFile /path/to/DigiCertCA.crt
</Virtual Host>
<VirtualHost *:443>
ServerName
www.yoursite2.com DocumentRoot /var/www/site2
SSLEngine on
SSLCertificateFile /path/to/www_yoursite2_com.crt
SSLCertificateKeyFile /path/to/www_yoursite2_com.key
SSLCertificateChainFile /path/to/DigiCertCA.crt
</Virtual Host>
--
Kind Regards,
David
David Flanigan
Mobile: +1.513.560.8231
E:
dave@flanigan.net W:
http://www.flanigan.net