Open Identity Server’s web.xml file and comment out the httpHeaderSecurity filter definition.
<filter>
<filter-name>httpHeaderSecurity</filter-name>
<filter-class>org.apache.catalina.filters.HttpHeaderSecurityFilter</filter-class>
<async-supported>true</async-supported>
</filter>Comment out the hstsMaxAgeSeconds parameter:
<init-param>
<param-name>hstsMaxAgeSeconds</param-name>
<param-value>31536000</param-value>
</init-param>Comment out the filter mapping.
<filter-mapping>
<filter-name>httpHeaderSecurity</filter-name>
<url-pattern>/*</url-pattern>
<dispatcher>REQUEST</dispatcher>
</filter-mapping>For information about how to open and modify a file, see Modifying Configurations
in the NetIQ Access Manager Appliance 5.0 Administration Guide.