본문 바로가기
서버/LINUX

SSL 비번제거

by 죠부니 2023. 4. 17.
반응형

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

 

반응형

'서버 > LINUX' 카테고리의 다른 글

아파치 및 CURL버전 업데이트  (1) 2023.12.06
Janus 버전 업데이트  (0) 2022.11.22
php -m  (0) 2020.05.21
VMWARE + Centos7 + APM - 9  (0) 2020.04.10
VMWARE + Centos7 + APM - 8  (0) 2020.04.10