일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 스크래치
- 시작하기
- jsp
- 파주
- 잡토이
- 설치
- oracle
- 리브레캐드
- 라즈베리파이
- 코딩
- 아두이노
- 예제
- jobtoy
- 유니티
- 톰캣
- Unity
- librecad
- 잡토이 메이킹 코딩 학원
- 강좌
- 오라클
- html5
- 운정
- tomcat
- 설정
- Android
- MSSQL
- mysql
- s4a
- Spring Security
- 안드로이드
- 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 |