This document demonstrates how to enable HTTP Strict Transport Security (HSTS) in the Symantec LiveUpdate Administrator (LUA).
[
<filter>
<filter-name>httpHeaderSecurity</filter-name>
<filter-class>org.apache.catalina.filters.HttpHeaderSecurityFilter</filter-class>
<init-param>
<param-name>hstsEnabled</param-name>
<param-value>true</param-value>
</init-param>
<init-param>
<param-name>hstsMaxAgeSeconds</param-name>
<param-value>31536000</param-value>
</init-param>
<init-param>
<param-name>hstsIncludeSubDomains</param-name>
<param-value>true</param-value>
</init-param>
<async-supported>true</async-supported>
</filter>
]
[
<filter-mapping>
<filter-name>httpHeaderSecurity</filter-name>
<url-pattern>/*</url-pattern>
<url-pattern>*</url-pattern>
<dispatcher>REQUEST</dispatcher>
</filter-mapping>
]
Note: It is recommended to verify the steps in a Test/UAT Environment before implementing in Production.
For LUA versions below 2.3.13 Apache Tomcat 8 Configuration Reference
For LUA 2.3.13 and above with Apache Tomcat version 9.0.90 Apache Tomcat 9 Configuration Reference