[httpd] SSL 인증서 적용(feat.시큐어사인)

정리맨·2022년 8월 8일
0
post-custom-banner

시큐어사인에서 사서 centos7.9 httpd(아파치서버)에 적용함

<VirtualHost default:포트번호>
ServerName 내가사용할도메인:포트번호
ErrorLog logs/ssl_error_log
TransferLog logs/ssl_access_log
LogLevel warn
SSLEngine on
SSLProtocol all -SSLv3 -TLSv1 -TLSv1.1
SSLCipherSuite 어쩌고저쩌고

SSLCertificateKeyFile /etc/httpd/ssl/~~.key.pem
SSLCertificateChainFile /etc/httpd/ssl/ca-chain-bundle.pem
SSLCACertificateFile /etc/httpd/ssl/AAACertificateServicesRoot.crt.pem

profile
ㅎㅎ

0개의 댓글