Re: [users@httpd] Ignore SSL key/certificate errors

2015-01-08 Thread Yves Goergen
Am 08.01.2015 um 20:59 schrieb Scott (firstclasswatches.co.uk): openssl rsa -noout -modulus -in FILE.key openssl x509 -noout -modulus -in FILE.cer I noticed PHP has built-in methods for these tasks, so I might as well call these and save me the temporary file or stdin/stdout handling for the

Re: [users@httpd] Ignore SSL key/certificate errors

2015-01-08 Thread Yves Goergen
Am 08.01.2015 um 20:59 schrieb Scott (firstclasswatches.co.uk): Found the below online. You should be able to run that to give you a good idea that nothing has been tampered with before allowing it into the config. - If everything matches (same modulus), the files are compatible. If not, One

Re: [users@httpd] Ignore SSL key/certificate errors

2015-01-08 Thread Scott (firstclasswatches.co.uk)
Found the below online. You should be able to run that to give you a good idea that nothing has been tampered with before allowing it into the config. - If everything matches (same modulus), the files are compatible. If not, One of the file is not linked to the others. openssl rsa -noout -mod

[users@httpd] Ignore SSL key/certificate errors

2015-01-08 Thread Yves Goergen
Hello, Currently, when I configure Apache web server for SSL and provide a broken file for the key or certificate, the server fails to start completely. Since I want to allow other users of my web server to upload their own key/cert files for their VirtualHosts, I need to thoroughly verify th