CentOS 7.x 아파치 SSL 인증서 설정 방법
이번에는 letsencrypt 로 무료 발급 받은 인증서를 아파치에 설정을 해봅니다.
발급 받은 인증서 파일은 /etc/letsencrypt/archive/ 디렉토리에 있지만
live 디렉토리에 심볼릭 링크가 됩니다.
<VirtualHost conoha.ivps.kr:443>
SSLEngine on
SSLCertificateFile /etc/letsencrypt/live/conoha.ivps.kr/cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/conoha.ivps.kr/privkey.pem
SSLCertificateChainFile /etc/letsencrypt/live/conoha.ivps.kr/fullchain.pem
ServerName conoha.ivps.kr
DocumentRoot /var/www/html
ErrorLog logs/conoha.ivps.kr_error_log
CustomLog logs/conoha.ivps.kr_access_log common
</VirtualHost>
그리고 SSLEngine 이 동작하게 mod_ssl 모듈을 설치하여야 합니다.
# yum install mod_ssl
아파치를 재시작하고 브라우저로 접속해 보면 됩니다.
'LINUX' 카테고리의 다른 글
CentOS 7.x vsftpd passive mode 설정 (0) | 2017.02.23 |
---|---|
리눅스 http 접근시 자동으로 https 리디렉트 시키기 (0) | 2017.02.15 |
SSL 인증서 무료로 발급 받는 방법 (0) | 2017.02.15 |
CentOS 7.x OpenSSL 개인인증키 발급 및 아파치 구축 (0) | 2017.02.14 |
phpMyAdmin import 파일 용량 변경 (0) | 2017.02.10 |