1. キーストアファイル作成
keytool -genkey -alias tomcat -keyalg RSA -keystore /(keystoreの保存先)/.keystore
- server.xml編集
server.xmlのConnectorを編集
<Connector port="8443"
protocol="org.apache.coyote.http11.Http11Protocol"
maxThreads="150"
SSLEnabled="true"
scheme="https"
secure="true"
clientAuth="false"
sslProtocol="TLS"
keystoreFile="/(keystoreの保存先)/.keystore" #←追加
keystorePass="(keystoreのパスワード)" #←追加
URLEncoding="UTF-8" />
以上