Thanks, Willr, I had thought about that, and the reason for doubting that option is, that I tried that and I would always end up with an Error 500. I looked it up again, and it specifies "Init: SSL server IP/port conflict:". Is apache initializing an SSL connection?
The Plesk httpd.include and vhost.conf file entries, which are making the slavedomain.com point to silverstripes root directory:
httpd.include:
<VirtualHost 85.214.102.21:80>
ServerName slavedomain.com:80
ServerAlias www.slavedomain.com
...
vhost.conf:
<Directory /srv/www/vhosts/masterdomain.com/httpdocs/silverstripes_root>
Options -Includes -ExecCGI
<IfModule sapi_apache2.c>
php_admin_flag engine on
php_admin_flag safe_mode on
php_admin_value open_basedir "/srv/www/vhosts/masterdomain.com/httpdocs/silverstripes_root"
</IfModule>
<IfModule mod_php5.c>
php_admin_flag engine on
php_admin_flag safe_mode on
php_admin_value open_basedir "/srv/www/vhosts/masterdomain.com/httpdocs/silverstripes_root"
</IfModule>
AllowOverride All
Options +FollowSymLinks +SymLinksIfOwnerMatch
</Directory>
DocumentRoot /srv/www/vhosts/masterdomain.com/httpdocs/silverstripes_root
With Joomla, this vhost redirection is working perfectly. But here with silverstripes, I get only Error 500. Although I have setup subsites correctly and the config mask displays all the domain names, which correspond to the subsite. Anybody can imagine, why SSL connectino is established?