I have used Cpanel to generate and isntall self-signed certificate for https and now when i installed phpmyadmin once i go trough https it thorows error 500 why

link|improve this question
1  
Check your Apache's error log -- it will have good enough detailed error message. – LazyOne Nov 12 '11 at 0:03
feedback

1 Answer

One thing you could test (although first I would follow LazyOne's advice and check the error logs) is that you have a vhost set up for listening to SSL traffic, it could be that your server is listening on the right port but once traffic comes in it isn't being handled.

An example (borrowed from here, slightly changed by me) would be.

<VirtualHost *:443>
    DocumentRoot /path/to/site
    ServerName www.yourdomain.com
    SSLEngine on
    SSLCertificateFile /path/to/your_domain_name.crt
    SSLCertificateKeyFile /path/to/your_private.key
    SSLCertificateChainFile /path/to/DigiCertCA.crt
</VirtualHost>

cPanel should handle this but I am not sure if it always does it correctly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.