Mobile app version of vmapp.org
Login or Join
Ravi8258870

: Error 500 on phpMyAdmin via https from "self-signed certificate"? I have used Cpanel to generate and install a self-signed certificate for HTTPS and now that I have installed phpMyAdmin once I

@Ravi8258870

Posted in: #Apache #HttpCode500 #Https #Phpmyadmin #SecurityCertificate

I have used Cpanel to generate and install a self-signed certificate for HTTPS and now that I have installed phpMyAdmin once I access phpMyAdmin via HTTPS it throws out an error 500 message.

Why is this?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Ravi8258870

1 Comments

Sorted by latest first Latest Oldest Best

 

@YK1175434

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 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.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme