I've got a subsite configured like this in httpd.conf
<VirtualHost *:80>
ServerName myadmin.mysite.com
DocumentRoot /var/www/html/myadmin
DirectoryIndex index.php
<Directory /var/www/html/myadmin>
AllowOverride All
Allow from All
</Directory>
</VirtualHost>
But I want phpmyadmin to force a https connection. If I do that, in its configuration file config.inc.php via the following:
$cfg['ForceSSL'] = true;
I get redirected to a "Apache 2 Test Page" (on https). What do I need to change in order to keep the phpmyadmin connection solely on https