2018. 7. 25. 15:28

tomcat ssl support



ssl 사용할 경우 connector 는 두 종류로 나뉜다. 
- BIO and NIO

 APR 을 사용하지 않는 경우 connector class 는 다음과 같다.

  • HTTP/1.1 : org.apache.coyote.htttp11.Http11Protocol
  • AJP/1.3 : org.apache.coyote.http11.AjpProtocol

APR 사용시에는 connector class 가 다음과 같이 변경된다.

  • HTTP/1.1 : org.apache.coyote.htttp11.Http11AprProtocol
  • AJP/1.3 : org.apache.coyote.http11.AjpAprProtocol

connector properties 는 아래 참조. 



APR/Native를 사용하기 원하면 아래와 같이 설치해야 한다. 

APR (Apache Portable Runtime) 및 Tomcat(톰캣) Native Library 설치 & 설정 참조


'etc > was' 카테고리의 다른 글

Payara Server SSL 구성  (0) 2018.05.09