본문 바로가기
Dev ::

mod_ssl 을 이용한 SSL 설치 가이드( * 경로는 Apache 자동설치 기준 )

by 히로:: 2021. 12. 24.

[Apache SSL 설치]

mod_ssl 을 이용한 SSL 설치 가이드 ( * 경로는 Apache 자동설치 기준 )

1. mod_ssl 설치

$ yum -y install mod_ssl

2. vi /etc/httpd/conf.d/ssl.conf 알맞게 수정


##
## SSL Virtual Host Context
##
<VirtualHost *:443>
...

ServerName servename.com:443

JkMount /* loadbalancer

#   SSL Engine Switch:
#   Enable/Disable SSL for this virtual host.
SSLEngine on

...

SSLCertificateFile /data/webapp/ssl/star.jini.ac.kr.crt


...
SSLCertificateKeyFile /data/webapp/ssl/star.jini.ac.kr.key

...
SSLCertificateChainFile /data/webapp/ssl/chainca.crt

...

<Directory "/data/webapp">
        Options Indexes FollowSymLinks
        AllowOverride None
        Order allow,deny
        Allow from all
        Require all granted
</Directory>

3. 서비스 재시작 및 포트 확인

$ systemctl restart httpd
$ netstat -lnp | grep 443
반응형

댓글