알쓸전컴(알아두면 쓸모있는 전자 컴퓨터)
Tomcat 8.5 SSL 도메인 여러개 사용하기 본문
Tomcat8.5 을 사용하다 1개의 tomcat 에서 여러개의 서비스를 할 경우가 생겼다.
그러나 보니 웹사이트 주소를 서로 다른 SSL 도메인을 사용하고 싶을때
멀티 도메인을 사용 할수 있다.
방법은
tomcat>>conf>>server.xml
을 수정 해주면 되는데
위와 같이 설정 해주면 thkomeet.ml 와 backcafe2.ml 을 동시에 사용할수가 있다.
<Connector port="443" protocol="org.apache.coyote.http11.Http11NioProtocol"
maxThreads="150" SSLEnabled="true" defaultSSLHostConfigName="thkomeet.ml">
<UpgradeProtocol className="org.apache.coyote.http2.Http2Protocol" />
<SSLHostConfig hostName="thkomeet.ml">
<Certificate certificateKeyFile="/etc/letsencrypt/live/thkomeet.ml/privkey.pem"
certificateFile="/etc/letsencrypt/live/thkomeet.ml/cert.pem"
certificateChainFile="/etc/letsencrypt/live/thkomeet.ml/chain.pem"
type="RSA" />
</SSLHostConfig>
<SSLHostConfig hostName="backcafe2.ml">
<Certificate certificateKeyFile="/etc/letsencrypt/live/backcafe2.ml/privkey.pem"
certificateFile="/etc/letsencrypt/live/backcafe2.ml/cert.pem"
certificateChainFile="/etc/letsencrypt/live/backcafe2.ml/chain.pem"
type="RSA" />
</SSLHostConfig>
</Connector>
'Web ' 카테고리의 다른 글
apache2 서비스 실행 후 Bash 실행 (0) | 2022.08.29 |
---|---|
java.security.InvalidAlgorithmParameterException: the trustAnchors parameter must be non-empty 에러 해결방법 (0) | 2019.10.27 |
Freenom DDNS 사용 하기 (0) | 2019.04.26 |
web VR background 라이브러리 (0) | 2019.04.09 |
Youtube Data API 사용 하기 (video 검색) (10) | 2019.03.26 |
Comments