Size: 622
Comment:
|
Size: 1164
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 16: | Line 16: |
{{{./configure --prefix=/usr/local/apache2 --enable-mods-shared=most --enable-modules=so --enable-ssl}}} | {{{ ./configure --prefix=/usr/local/apache2 --enable-mods-shared=most --enable-modules=so --enable-ssl }}} 1. 비밀키 생성 {{{ openssl genrsa -des3 -out filename.key 1024 }}} 1. CSR 생성 {{{ openssl req -new -key filename.key -out filename.csr }}} 1. 인증기관에 CSR 전송 후, certificate를 받는다. (보통 .pem 파일) 1. ssl.conf 파일설정한다. SSLCertificateFile 에 certificate 파일경로를 적고, SSLCertificateKeyFile 에 key 파일경로를 적는다. 1. apachectl start 명령시 key 비밀번호에 답한다. 1. https 프로토콜로 서비스가 제대로 실행되는지 확인한다. |
http://wp.netscape.com/eng/ssl3/
Netscape사에서 [Socket]의 ComputerSecurity를 위해 만듬. 다음의 것들이 있다.
관련자료
[http://wiki.kldp.org/wiki.php/DocbookSgml/SSL-Certificates-HOWTO SSL Howto]
[http://kldp.org/HOWTO/html/SSL-RedHat-HOWTO/ssl-redhat-howto-3.html 아파치 인증서 관련]
[Apache]에 보안서버설치하기
- Apache 2.0부터 mod_ssl 이 내장되어 있다. 설치시 아래 옵션 필요.
./configure --prefix=/usr/local/apache2 --enable-mods-shared=most --enable-modules=so --enable-ssl
- 비밀키 생성
openssl genrsa -des3 -out filename.key 1024
- CSR 생성
openssl req -new -key filename.key -out filename.csr
- 인증기관에 CSR 전송 후, certificate를 받는다. (보통 .pem 파일)
- ssl.conf 파일설정한다. SSLCertificateFile 에 certificate 파일경로를 적고, SSLCertificateKeyFile 에 key 파일경로를 적는다.
- apachectl start 명령시 key 비밀번호에 답한다.
- https 프로토콜로 서비스가 제대로 실행되는지 확인한다.