keytool을 이용하여 jks파일에서 pkcs12 포맷형태로 키 추출
keytool -importkeystore -srckeystore 파일이름.jks -destkeystore 파일이름.p12 -deststoretype PKCS12 |
cert 파일 추출
openssl pkcs12 -in 추출파일이름.p12 -out cert파일이름.pem -clcerts -nokeys |
key파일 추출
$ openssl pkcs12 -in 추출파일이름.p12 -out key파일이름.key -nocerts -des |
nginx ssl 설정
# HTTPS server
#
server {
listen 443 http2 ssl;
server_name star.test.co.kr;
ssl_certificate /app/nginx/conf/ssl/cert파일이름.pem;
ssl_certificate_key /app/nginx/conf/ssl/key파일이름.key;
ssl_password_file /app/nginx/conf/ssl/비밀번호파일;
location / {
root html;
index index.html index.htm;
}
}
'Infra & Server Dev' 카테고리의 다른 글
Jira 8.3.0 다운로드 및 업데이트 (0) | 2019.07.09 |
---|---|
Cloudflare 방화벽 문제 해결 User-Agent (0) | 2019.05.24 |
Lombok, Hibernate StackOverflow (0) | 2018.12.26 |
Spring Boot War Jar Gradle 설정 (0) | 2018.08.28 |
[CentOS] CentOS 6.9버전에서 libmcrypt 설치 (0) | 2017.09.02 |