티스토리 뷰
이번엔 Nginx + SSL 설치 및 사용법에 대하여 알아보도록 하겠습니다.
step 1. 소스 다운로드
step 2. configure & make
# make
# make install
step3. key 생성
# openssl req -new > rocksea.csr
.....++++++
............................++++++
writing new private key to 'privkey.pem'
Enter PEM pass phrase:
Verifying - Enter PEM pass phrase:
phrase is too short, needs to be at least 4 chars
Enter PEM pass phrase:
Verifying - Enter PEM pass phrase:
-----
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
-----
Country Name (2 letter code) [GB]:KR
State or Province Name (full name) [Berkshire]:Seoul
Locality Name (eg, city) [Newbury]:rocksea
Organization Name (eg, company) [My Company Ltd]:rocksea
Organizational Unit Name (eg, section) []:rocksea
Common Name (eg, your name or your server's hostname) []:rocksea
Email Address []:globalrocksea@gmail.com
Please enter the following 'extra' attributes
to be sent with your certificate request
A challenge password []:1234
An optional company name []:rocksea
# openssl rsa -in privkey.pem -out rocksea.key
Enter pass phrase for privkey.pem:
writing RSA key
# openssl x509 -in rocksea.csr -out rocksea.cert -req -signkey rocksea.key -days 36500
step 4. nginx 설정 파일 추가
# vi /usr/local/nginx/conf/nginx.conf
server {
listen 443;
server_name localhost;
ssl on;
ssl_certificate /usr/local/nginx/keys/rocksea/rocksea.cert;
ssl_certificate_key /usr/local/nginx/keys/rocksea/rocksea.key;
ssl_session_timeout 5m;
ssl_protocols SSLv2 SSLv3 TLSv1;
ssl_ciphers HIGH:!aNULL:!MD5;
ssl_prefer_server_ciphers on;
location / {
root html;
index index.html index.htm;
}
}
step 5. browser 확인
https://ip:443 으로 접속하여 확인
기쁜 마음으로 다른 포스팅을 작성할 수 있도록 view on 한번씩 꾹 눌러주는 센스^^
이상 nginx + ssl 포스팅을 마치도록 하겠습니다.
by rocksea.
'Developer' 카테고리의 다른 글
[ multicast ping ] windows ping 안나가는 현상 (0) | 2012.07.19 |
---|---|
[ chukwa ] hadoop based Log System chukwa installation guide (0) | 2012.07.17 |
[ HBASE ] 1천만건 Test 입력 테스트 (0) | 2012.06.22 |
[ Cache Server] jboss +Infinispan clustering (0) | 2012.06.18 |
[ Maven Installation Guide ] maven 설치 가이드 (0) | 2012.06.15 |
- Total
- Today
- Yesterday
- 가정법
- AWS
- 대명사 구문
- 여행
- 비지니스 영어
- 영작
- Python
- 비교구문
- 스페인 여행
- Business English
- 베트남
- mongoDB
- 영문법
- Python Django
- JBOSS
- 도덕경
- ubuntu
- hdfs
- maven
- 해외여행
- 조동사
- NGINX
- k8s
- memcached
- it
- hadoop
- PostgreSQL
- 다낭
- nodejs
- redis
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |