tomcat서버에 https 적용하는 방법은 간단합니다.
server.xml 파일에 다음과 같은 내용 추가하면 됩니다.
============================================================================
<Connector port="8443" protocol="org.apache.coyote.http11.Http11NioProtocol" maxThreads="150" SSLEnabled="true">
<SSLHostConfig>
<Certificate certificateKeystoreFile="jks파일절대경로" certificateKeystorePassword="jks비밀번호" type="RSA" />
</SSLHostConfig>
</Connector>
============================================================================
굵은 글씨로 표시된 부분만 작성하면 쉽게 https 적용할 수 있습니다.
참고로 jks 파일은 따로 발급받아야 합니다.
'dev > WEB and WAS' 카테고리의 다른 글
tomcat catalina.out 날짜별 생성 (1) | 2022.09.30 |
---|---|
tomcat log encoding (0) | 2022.09.29 |
tomcat rwx 설정 (0) | 2021.10.30 |
pinpoint-agent 설치 (2) | 2021.07.11 |
nginx 413 에러 (0) | 2021.05.26 |