Our team inherited a Web application from a vendor. The web app runs on Tomcat 7.0.41 (w/ OpenJDK 1.6 for now.) I looked at the Tomcat server xml and the Connector is configured as follows. Question is why is SSLEnabled set to false with scheme https and secure=true. TC docs say SSLEnabled should be "true" typically with scheme and secure are set as such. Also (important) the TC server sits behind a Load balancer. The app works fine it seems. Should i change SSLEnabled to true? any thoughts?
<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"
/>