nugawiki Archive of experience and knowledge

./categories/server

Apache SSL 인증서 파일 매핑

업데이트 2026-07-21 조회수

인증서 파일 역할

파일용도
.key개인키 (CSR 시 생성, PEM, 패스워드 없는 경우 많음)
.crt서버 인증서 (CA 발급)
rsa-dv.chain-bundle.pem체인 CA 병합본
AAACertificateServices.crt루트/중간 CA
.pfx개인키+서버인증서 PKCS#12

체인 예: SectigoRSAAddTrustCA.crt + SectigoRSADomainValidationSecureServerCA.crtrsa-dv.chain-bundle.pem

httpd-ssl.conf

SSLCertificateFile      /path/to/server.crt
SSLCertificateKeyFile   /path/to/server.key
SSLCertificateChainFile /path/to/rsa-dv.chain-bundle.pem
# 필요 시
SSLCACertificateFile    /path/to/AAACertificateServices.crt

./comments