【发布时间】:2016-02-24 19:02:06
【问题描述】:
我们的团队从供应商那里继承了一个 Web 应用程序。 Web 应用程序在 Tomcat 7.0.41(目前使用 OpenJDK 1.6)上运行。我查看了 Tomcat 服务器 xml,连接器配置如下。问题是为什么 SSLEnabled 使用方案 https 和 secure=true 设置为 false。 TC 文档说 SSLEnabled 应该是“真”,通常使用方案和安全设置。此外(重要)TC 服务器位于负载均衡器后面。该应用程序似乎运行良好。我应该将 SSLEnabled 更改为 true 吗?有什么想法吗?
<Connector port="8443"
protocol="HTTP/1.1"
connectionTimeout="3000"
redirectPort="443"
SSLEnabled="false"
scheme="https"
secure="true"
useBodyEncodingForURI="true"
enableLookups="false"
maxThreads="400"
maxKeepAliveRequests="100"
acceptorThreadCount="4"
acceptCount="200"
proxyPort="443"
/>
【问题讨论】: