Can I create virtual servers with same ssl certificate?
The Plesk Panel can enable ssl in differents domains.
Ok, it’s the solution:
Add this line before virtualhosts:443
NameVirtualHost *:443
<VirtualHost *:443>
ServerName www.domain.com
SSLEngine on
SSLCertificateFile /path/to/www.domain.com.cert
SSLCertificateKeyFile /path/to/www.domain.com.key
DocumentRoot /www/vhosts/domain.com
</VirtualHost>
<VirtualHost *:443>
ServerName www.domain.org
SSLEngine on
SSLCertificateFile /path/to/www.domain.com.cert
SSLCertificateKeyFile /path/to/www.domain.com.key
DocumentRoot /www/vhosts/domain.org
</VirtualHost>