Apache/mod_ssl https 설정 메모
개요
환경
절차
아파치와 mod_ssl 설치
# yum install -y httpd mod_ssl
# chkconfig httpd on
브라우저에 액세스하고 Apache 화면이 표시되는지 확인
h tp : // 푹신 푹신. 이 m
개인 키 (Private Key), 서버 인증서 (CRT) 배포
# yum install -y httpd mod_ssl
# chkconfig httpd on
# ls /etc/httpd/conf/ssl.key/
server.key
# ls /etc/httpd/conf/ssl.crt/
server.crt
ssl.conf 편집
/etc/httpd/conf.d/ssl.conf
# SSLCertificateFileを実際の配置場所にあわせる
SSLCertificateFile /etc/httpd/conf/ssl.crt/server.crt
# SSLCertificateKeyFileを実際の配置場所にあわせる
SSLCertificateKeyFile /etc/httpd/conf/ssl.key/server.key
rewrite.conf 편집
/etc/httpd/conf.d/rewrite.conf
<ifModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R,L]
</ifModule>
Apache 재부팅
# service httpd restart
Stopping httpd: [ OK ]
Starting httpd: [ OK ]
브라우저에 액세스하고 https 통신으로 Apache 화면이 표시되는지 확인
Reference
이 문제에 관하여(Apache/mod_ssl https 설정 메모), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/yoshidna/items/580126de106c4133368f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)