4.12.1 ESP web.xml

<context-param>
      <param-name>phishingCheck</param-name>
    <param-value>standard</param-value>
</context-param>
<welcome-file-list>
      <welcome-file>index.html</welcome-file>
</welcome-file-list>
<error-page>
      <error-code>500</error-code>
    <location>/index.html</location>
</error-page>

<filter>
      <filter-name>TomcatSameOriginFilter</filter-name>
    <filter-class>org.apache.catalina.filters.HttpHeaderSecurityFilter
    </filter-class>
 
<init-param>
    <param-name>antiClickJackingOption</param-name>
        <param-value>SAMEORIGIN</param-value>
</init-param>
</filter>

<filter-mapping>
      <filter-name>TomcatSameOriginFilter</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

You can modify this file using Advanced File Configurator. See Advanced File Configurator in the NetIQ Access Manager Appliance 5.0 Administration Guide.