개발자의 끄적끄적

[server/ssl] Let's encrypt SSL 인증서 apache 적용 방법 본문

개발/was & server

[server/ssl] Let's encrypt SSL 인증서 apache 적용 방법

효벨 2022. 10. 17. 11:13
728x90
반응형

[server/ssl] Let's encrypt SSL 인증서 apache 적용 방법

 

 

Let's encrypt SSL 인증서를 발급받고 나면

 

apache 서버에 ssl 설정을 수정해주어야만

 

정상동작합니다.

 

이번에는 Let's encrypt SSL 인증서를 적용하는 방법을 공유해보려고 합니다!

 

 

1. 우선 아래와 같이 ssl 설정파일을 vi 편집기로 열어줍니다.

vi /etc/httpd/conf.d/ssl.conf

 

2. ssl.conf 파일에서 SSLCertificateFile / SSLCertificateKeyFile / SSLCertificateChainFile 위치를 찾아서

 

아래와 같이 변경합니다.

SSLCertificateFile /etc/letsencrypt/live/도메인/cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/도메인/privkey.pem
SSLCertificateChainFile /etc/letsencrypt/live/도메인/fullchain.pem

 

위에 도메인 자리에 인증서를 발급받을때 입력한 도메인으로 바꿔줍니다.

 

예를들어 도메인이 test.com 이라고 가정하면

 

/etc/letsencrypt/live/test.com/cert.pem 이 됩니다!

 

참고들 하세요!

 

 

반응형
Comments