AWS5应用服务器默认是Tomcat的升级版jboss web,启用AWS5的Web SSL服务只需开启tomcat的SSL(https)支持即可。
简要步骤:
%AWS5_HOME%\webserver
下%AWS5_HOME%\webserver\conf\server.xml
文件,增加如下配置重新启动AWS Web服务
<!-- keystoreFile 为 server.keystore证书文件路径
keystorePass 为生成 server.keystore证书文件时的密码
-->
<Connector
port="8443" protocol="org.apache.coyote.http11.Http11Protocol" maxThreads="200"
scheme="https" secure="true" SSLEnabled="true"
keystoreFile="server.keystore" keystorePass="changeit"
clientAuth="false" sslProtocol="TLS" URIEncoding="UTF-8" useBodyEncodingForURI="true" />