728x90
반응형
톰캣 9에서는 HTTPS 호스트를 두 가지 방법으로 설정할 수 있다.
SSLHostConfig 활용
아래처럼 HTTPS 통신에 활용할 SSL 정보를 입력할 수 있다.
<Connector port="8443" protocol="org.apache.coyote.http11.Http11AprProtocol"
maxThreads="150" SSLEnabled="true"
maxParameterCount="1000" >
<SSLHostConfig>
<Certificate certificateKeyFile="/home/jenkins/keys/server.key"
certificateFile="/home/jenkins/keys/server.crt"
certificateChainFile="/home/jenkins/keys/server.crt"
type="RSA" />
</SSLHostConfig>
</Connector>
Connector 옵션 활용
아래처럼 Connector 옵션에 SSL 정보를 입력할 수 있다.
<Connector port="8443" protocol="org.apache.coyote.http11.Http11AprProtocol"
maxThreads="150" SSLEnabled="true" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS"
keystoreFile="/home/jenkins/keys/.keystore" keystorePass="password"
maxParameterCount="1000" />
728x90
반응형
'WAS(Web Application Server) > 톰캣(Tomcat)' 카테고리의 다른 글
톰캣 가상 호스트 컨텍스트 설정 (0) | 2024.10.10 |
---|---|
톰캣과 OpenSSL 버전 호환 이슈 "org.apache.tomcat.jni.Error: 70023" (0) | 2024.06.10 |
[톰캣 9] HTTP/2 프로토콜을 사용하도록 설정 (0) | 2024.05.27 |
[톰캣 9] "The APR based Apache Tomcat Native library was not found" 메시지 해결 (0) | 2024.05.20 |
[우분투] 톰캣 시간대 설정 (0) | 2023.07.12 |
댓글