Apache 에서 SSL 을 설정하고 사용할수 있게 해주는 모듈이다. 보안서버 구축 (https://도메인)
|
CentOS7 64bit httpd (RPM) |
mod_ssl (RPM) 설치
yum install mod_ssl |
파일 생성 확인
[root@iwinvhelper-7505 modules]# ll /etc/httpd/modules/mod_ssl.so -rwxr-xr-x 1 root root 219464 4월 13 06:04 /etc/httpd/modules/mod_ssl.so |
로드 모듈 설정 확인
[root@iwinvhelper-8053 conf.modules.d]# cat /etc/httpd/conf.modules.d/00-ssl.conf
# httpd.conf 에 아래 로드 모듈 설정 넣을 필요 없음 LoadModule mod_ssl modules/mod_ssl.so |
아파치 재시작
[root@iwinvhelper-7505 modules]# service httpd restart Redirecting to /bin/systemctl restart httpd.service |
443 포트 오픈 확인
[root@iwinvhelper-8053 conf.modules.d]# netstat -anlp | grep 443 |
비교적 간단하게 설치 할 수 있다.