programming/jsp

[jsp] 톰캣 tomcat server.xml ssl 설정하기

labj 2012. 6. 14. 18:47

[jsp] 톰캣 tomcat server.xml ssl 설정하기


1. tomcat 5

<Connector 

SSLCertificateFile="F:/webtools/ssl/jobtoycert.pem" 

SSLCertificateKeyFile="F:/webtools/ssl/jobtoykey.pem" 

SSLEnabled="true" 

SSLEngine="on" 

SSLPassword="**********" 

clientAuth="false" 

keystorePass="**********" 

maxThreads="150" 

port="443" 

protocol="org.apache.coyote.http11.Http11Protocol" 

scheme="https" 

secure="true" 

sslProtocol="TLS"

URIEncoding="utf8" />


2. tomcat 6

<Listener className="org.apache.catalina.core.AprLifecycleListener" SSLEngine="off" /> 

<Connector 

protocol="org.apache.coyote.http11.Http11Protocol" 

port="443" 

minSpareThreads="5" 

maxSpareThreads="75" 

enableLookups="true" 

disableUploadTimeout="true" 

acceptCount="100" maxThreads="200"     

scheme="https" 

secure="true" 

SSLEnabled="true" 

keystoreFile="경로" keystorePass="패스워드" 

keystoreType="pkcs12"                  

clientAuth="false" 

sslProtocol="TLS" 

URIEncoding="utf8" /> 


[jsp] 톰캣 tomcat server.xml ssl 설정하기

'programming > jsp' 카테고리의 다른 글

[jsp] 웹어플리케이션 SSO 방식  (0) 2012.11.13
[jsp] iframe resize  (0) 2012.07.09
[windows7] Favorites 즐겨찾기 위치  (0) 2012.06.13
[jsp] sample  (0) 2012.06.02
[jsp] 보안 로그인  (0) 2012.06.01