일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
- s4a
- librecad
- 안드로이드
- 코딩
- Spring Security
- jobtoy
- Android
- 잡토이 메이킹 코딩 학원
- 톰캣
- 파주
- tomcat
- 잡토이
- 오라클
- jsp
- 리브레캐드
- 설정
- html5
- 라즈베리파이
- 아두이노
- 강좌
- MSSQL
- 예제
- oracle
- 운정
- 유니티
- 시작하기
- 스크래치
- Unity
- 설치
- mysql
- Today
- Total
랩제이
[jsp] 톰캣 tomcat server.xml ssl 설정하기 본문
[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 |