인증서
-
Kubernetes 에서 Cert-manager로 letsencrypt 인증서 발급/설정NAVER Cloud 2021. 7. 22. 11:58
kubernetes 에 구동하는 웹에서도 https 설정이 필요하고, 무료 인증서를 사용할 경우 letsencrypt 에서 인증서를 발급받고 웹에 적용할 수 있다. 네이버클라우드에서 테스트 해봤고, nginx ingress 를 사용했다. (k8s cluster 는 구성이 되어 있어야 하고, nginx ingress 를 설치하면 를 생성하면, ingress 와 매칭된 NLB는 자동 생성된다.) 1. NKS 에 ingress cotroller 설치 kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v0.47.0/deploy/static/provider/cloud/deploy.yaml namespace/i..
-
CentOS7 Apache ssl 인증서 적용 그리고 80 to 443 redirectHOWTO 2020. 6. 5. 08:35
ssl 인증서를 적용하는 일이 자주 있는 건 아니라서 매번 할 때는 어케어케 찾아서 하는데 매번 헤맨다 ㅠㅠ 그래서 오늘은 정리! 1.mod_ssl 설치 # yum install mod_ssl -y 2. httpd.conf 에 Load Modle 추가 1) LoadModule, Include 부분 중에 없는 항목 추가 2) ServerName 도메인으로 추가 # vi /etc/httpd/conf/httpd.conf LoadModule ssl_module modules/mod_ssl.so Include conf.modules.d/.conf Include conf.d/.conf ServerName XXX.YYY.com 4. ssl.conf 파일 수정 httpd.conf 에 모든 내용을 담으면 헷갈려서 ssl..