서버/LINUX

SSL 비번제거

죠부니 2023. 4. 17. 15:30
반응형

https://serverfault.com/questions/160768/stop-apache-from-asking-for-ssl-password-each-restart

 

stop apache from asking for SSL password each restart

Using instructions from this site but varying them just a little i created a CA using -newca, i copied cacert.pem to my comp and imported as trusted issuer in IE. I then did -newreq and -sign (note...

serverfault.com

 

후이즈 발급 기준 : Sectigo RSA Domain Validation

SSLEngine on
SSLCertificateKeyFile /etc/httpd/conf/ssl/도메인/Private.key
SSLCertificateFile /etc/httpd/conf/ssl/도메인/도메인_crt.pem
SSLCertificateChainFile /etc/httpd/conf/ssl/도메인/ChainCA.crt
SSLCACertificateFile /etc/httpd/conf/ssl/도메인/RootCA.crt

openssl rsa -in Private.key -out newKey.key

비번입력후 해당 키로 변경함

SSLEngine on
SSLCertificateKeyFile /etc/httpd/conf/ssl/도메인/newKey.key
SSLCertificateFile /etc/httpd/conf/ssl/도메인/도메인_crt.pem
SSLCertificateChainFile /etc/httpd/conf/ssl/도메인/ChainCA.crt
SSLCACertificateFile /etc/httpd/conf/ssl/도메인/RootCA.crt

 

반응형