You can configure CA CSM to always use HTTPS instead of HTTP for user access manually.
Follow these steps:
<security-constraint>
<web-resource-collection>
<web-resource-name>Protected Context</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<!-- auth-constraint goes here if you require authentication -->
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
<!-- A "Connector" represents an endpoint by which requests
and responses are returned. Documentation at :
Java HTTP Connector: /docs/config/http.html (blocking &
non-blocking)
Java AJP Connector: /docs/config/ajp.html
APR (HTTP/AJP) Connector: /docs/apr.html
Define a non-SSL HTTP/1.1 Connector on port 8080
-->
<Connector address="123.456.789.321" port="8080"
protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="30308" />
Note: For more information, see documentation for the Apache Tomcat 7.0 Servlet/JSP Container.
|
Copyright © 2015 CA Technologies.
All rights reserved.
|
|