<div>Dear RT Gurus,</div>
<div> </div>
<div>Our RT (3.8.2) on linux using virtual host on http (<a href="http://rt.domainname.com">http://rt.domainname.com</a>) was working fine. I moved RT over to httpS (<a href="https://rt.domainname.com/">https://rt.domainname.com</a>) and got the below message:<br>
<<You're almost there!<br>You haven't yet configured your webserver to run RT. You appear to have installed RT's web interface correctly, but haven't yet configured your web server to "run" the RT server which powers the web interface. The next step is to edit your webserver's configuration file to instruct it to use RT's mod_perl, FastCGI or SpeedyCGI handler. If you need commercial support, please contact us at <a href="mailto:sales@bestpractical.com">sales@bestpractical.com</a>. >><br>
 <br>Any clues? Am I missing anything in any configuration file? Below is my ssl.conf configuration:<br> <br><VirtualHost *:443><br>       ServerName <a href="http://rt2.domainname.com">rt2.domainname.com</a><br>       DocumentRoot /data/rt3/share/html<br>
       AddDefaultCharset UTF-8<br>       PerlModule Apache::DBI<br>       PerlRequire /data/rt3/bin/webmux.pl<br>        <Location /NoAuth/images><br>                SetHandler default<br>        </Location><br>
       ErrorLog logs/ssl_error_log<br>       TransferLog logs/ssl_access_log<br>       LogLevel warn<br>       <Directory /><br>          SSLRequireSSL<br>       </Directory><br>        SSLEngine on<br>        SSLProtocol all -SSLv2<br>
        SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM:+LOW<br>        SSLCertificateFile /etc/ssldir/server.crt<br>        SSLCertificateKeyFile /etc/ssldir/server.key<br></VirtualHost></div>