반응형
## 인증서 갱신
## 웹 서버
1. 인증서 갱신 테스트
- $ sudo certbot renew --dry-run
- Problem binding to port 80: Could not bind to IPv4 or IPv6.. Skipping. 문제 발생
- Nginx 서비스 다운 및 80 포트 AnyOpen 설정
- $ sudo systemctl stop nginx
2. 인증서 갱신
- $ sudo certbot renew
3. 인증서 만료일 확인하기
- $ sudo certbot certificates
4. nginx 재시작 하기
- $ sudo systemctl start nginx
## 톰캣 HTTPS 적용 하기
## 운영, 포탈 서버
1. conf 폴더 이동 하기
- $ sudo su
- $ cd /opt/tomcat/apache-tomcat-8.5.61/conf
2. server.xml 파일 열기
- $ vi server.xml
3. http 커넥터 부분 수정
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
URIEncoding="UTF-8" redirectPort="443"
proxyPort="443" scheme="https" />
반응형
댓글