HTTP Header Security - Intergraph Smart Materials - 10.1 - Installation & Upgrade - Hexagon

Intergraph Smart Materials Web Installation (10.1)

Language
English
Product
Intergraph Smart Materials
Subproduct
Web
Search by Category
Installation & Upgrade
Smart Materials/Smart Reference Data Version
10.1

To configure http header security, do the following:

  1. Navigate to: <tomcat-directory>\conf\web.xml

  2. In web.xml, search for <filter-name>httpHeaderSecurity</filter-name>.

  3. Edit as shown below:

    <filter>

    <filter-name>httpHeaderSecurity</filter-name>

    <filter-class>org.apache.catalina.filters.HttpHeaderSecurityFilter</filter-class>

    <async-supported>true</async-supported>

    <init-param>

    <param-name>hstsEnabled</param-name>

    <param-value>true</param-value>

    </init-param>

    <init-param>

    <param-name>hstsMaxAgeSeconds</param-name>

    <param-value>31556927</param-value>

    </init-param>

    <init-param>

    <param-name>hstsIncludeSubDomains</param-name>

    <param-value>true</param-value>

    </init-param>

    <init-param>

    <param-name>antiClickJackingEnabled</param-name>

    <param-value>true</param-value>

    </init-param>

    <init-param>

    <param-name>antiClickJackingOption</param-name>

    <param-value>SAMEORIGIN</param-value>

    </init-param>

    <init-param>

    <param-name>xssProtectionEnabled</param-name>

    <param-value>true</param-value>

    </init-param>

    </filter>