我的Tomcat 7在端口4545上运行。如何将其配置为接受4546或其他的HTTPS连接。由于已经有IIS运行,我无法在默认443上使用它。
更新
我试过的步骤:
答案 0 :(得分:4)
在 tomcatDir /conf/server.xml中查找以下行:
<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS" />
这是不言自明的,只要考虑到您还需要证书才能使SSL正常工作。
另外,请查看说明如何指定证书的文档:http://tomcat.apache.org/tomcat-7.0-doc/config/http.html