Generate apache SSL Sign Key
Quick Tips for Apache’s SSL
generate new key
openssl req -new > takizo.cert.csr
disable passphrase for generated the key:
openssl rsa -in privkey.pem -out takizo.cert.key
convert request into signed cert
openssl x509 -in takizo.cert.csr -out takzio.cert.crt -req -signkey takizo.cert.key -days 1000
Related posts:
- How To Generate a Certificate Signing Request (CSR) for an SSL Certificate This short tutorial is for Apache2.x + OpenSSL It’s advice...
- Patch Apache 2.0.58 to 2.0.59 apache mod_rewrite vulnerability, patch to latest version to avoid buffer...
- Apache logs … While troubleshooting apache webserver, it would be helpful to...